forked from torch-js/torch-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.53 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": "@arition/torch-js",
"version": "0.14.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Kittipat Virochsiri, arition, raghavmecheri",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arition/torch-js.git"
},
"scripts": {
"install": "prebuild-install -r napi || cmake-js compile",
"build": "node build.js",
"compile": "cmake-js compile",
"rebuild": "cmake-js rebuild",
"test": "jest --forceExit --verbose",
"lint": "eslint ./",
"build-prebuild": "prebuild -t 3 -r napi --include-regex \"\\.[nsd][oyl][dl]?[ie]?b?$\" --backend cmake-js",
"prepare": "husky install"
},
"lint-staged": {
"**/*": [
"yarn lint",
"prettier --write"
]
},
"devDependencies": {
"@arition/prebuild": "^11.0.3",
"@jest/globals": "^27.5.1",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2"
},
"dependencies": {
"@arition/prebuild-install": "^7.1.0",
"bindings": "^1.5.0",
"cmake-js": "^6.3.0",
"node-addon-api": "^4.3.0",
"typescript": "^4.6.3"
},
"binary": {
"napi_versions": [
3
]
}
}