-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "node-executorch",
"version": "0.1.1",
"description": "Node.js binding for ExecuTorch",
"main": "lib/index.js",
"scripts": {
"build-js": "tsc",
"test-all": "yarn test-rs && yarn test",
"test": "jest",
"test-rs": "cargo test",
"prepack": "yarn build-js",
"cargo-build": "cargo build --message-format=json > cargo.log",
"cross-build": "cross build --message-format=json > cross.log",
"postcargo-build": "yarn neon-dist < cargo.log",
"postcross-build": "yarn neon-dist -m /target < cross.log",
"neon-dist": "neon dist --name node_executorch",
"postneon-dist": "node ./scripts/postneon-dist.js",
"debug": "yarn cargo-build",
"build": "yarn cargo-build --release",
"cross": "yarn cross-build --release",
"release": "release-it"
},
"engines": {
"yarn": ">=1.22",
"node": ">=18"
},
"author": "Hans <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@jest/globals": "^29.7.0",
"@neon-rs/cli": "0.1.81",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"jest": "^29.7.0",
"release-it": "^17.7.0",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mybigday/node-executorch.git"
},
"keywords": [
"executorch",
"ai"
],
"bugs": {
"url": "https://github.com/mybigday/node-executorch/issues"
},
"homepage": "https://github.com/mybigday/node-executorch#readme",
"files": [
"lib",
"bin"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}