-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"name": "@tsonic/rust-nodejs",
"version": "0.1.1",
"description": "Node.js target capability for the Tsonic Rust target",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsoniclang/rust-nodejs.git"
},
"type": "module",
"files": [
"dist",
"!dist/**/*.tsbuildinfo",
"rust/crates",
"!rust/crates/**/.temp/**",
"rust/tests",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"tsonic": {
"kind": "plugin",
"contractVersion": 1,
"entry": "."
},
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc -p nodejs/tsconfig.json",
"test": "npm run build && node --test nodejs/test/*.test.mjs && cargo test --locked --workspace",
"prepack": "npm run build"
},
"dependencies": {
"@tsonic/rust-runtime": "0.1.1",
"@tsonic/rust-js": "0.1.1"
},
"peerDependencies": {
"@tsonic/target-rust": "0.1.1"
},
"devDependencies": {
"@tsonic/target-rust": "file:../tsonic-rust",
"@tsonic/rust-runtime": "file:../rust-runtime",
"@tsonic/rust-js": "file:../rust-js",
"@types/node": "^22.19.21",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=22.18.0"
}
}