-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.36 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
{
"author": {
"name": "Sergey Nikitin",
"email": "[email protected]",
"url": "https://github.com/pasaran"
},
"name": "descript",
"description": "descript",
"version": "4.0.6",
"homepage": "https://github.com/descript-org/descript",
"repository": {
"type": "git",
"url": "git://github.com/descript-org/descript.git"
},
"bugs": {
"url": "https://github.com/descript-org/descript/issues"
},
"scripts": {
"eslint": "npx eslint .",
"test": "cd tests && ./gen-certs.sh && npx jest",
"ts-compile": "npx tsc --noEmit",
"prepack": "rm -rf build && npx tsc -p ./tsconfig-build.json && npx ts-add-js-extension --dir=build"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"ts-add-js-extension": "^1.6.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"files": [
"build"
],
"main": "./build/index.js",
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"@fengkx/zstd-napi": "^0.1.0"
}
}