-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "snappystream",
"version": "2.1.1",
"description": "Framed Snappy streams",
"main": "dist/snappystreams.js",
"module": "dist/snappystreams.mjs",
"types": "dist/snappystreams.d.ts",
"scripts": {
"lint": "eslint lib test",
"test": "jest",
"build": "tsup lib/snappystreams.ts --format cjs,esm --dts",
"prepare": "husky install",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/dudleycarr/snappystream.git"
},
"keywords": [
"Snappy",
"Snappy framing format",
"Snappy stream"
],
"author": "Dudley Carr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dudleycarr/snappystream/issues"
},
"homepage": "https://github.com/dudleycarr/snappystream",
"dependencies": {
"@node-rs/crc32": "^1.7.2",
"snappy": "^7.2.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^9.0.11",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}