-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.25 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
71
72
73
74
{
"name": "ffi-rs",
"version": "1.0.98",
"main": "index.js",
"types": "index.d.ts",
"description": "A module written in Rust and N-API provides interface (FFI) features for Node.js",
"napi": {
"name": "ffi-rs",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"arm-unknown-linux-gnueabihf",
"i686-pc-windows-msvc",
"x86_64-unknown-linux-musl",
"aarch64-pc-windows-msvc"
]
}
},
"author": "zhangyuang",
"homepage": "https://github.com/zhangyuang/node-ffi-rs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zhangyuang/node-ffi-rs.git"
},
"keywords": [
"ffi",
"rust",
"node.js",
"napi"
],
"files": [
"index.js",
"index.d.ts",
"README.md"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@napi-rs/cli": "^2.15.2",
"@types/node": "^20.8.7",
"benny": "^3.7.1",
"conventional-changelog-cli": "^4.1.0",
"esno": "^4.7.0",
"ffi-napi": "^4.0.3",
"koa": "^2.14.2",
"shelljs": "^0.8.5",
"typescript": "^5.4.5"
},
"scripts": {
"artifacts": "napi artifacts",
"build:c": "node scripts/compile.js",
"build:dev": "env=development node scripts/build.js",
"build": "node scripts/build.js",
"publish:npm": "node scripts/publish.js",
"test": "esno ./test.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add . && git commit -m \"docs: update changelog.md\" && git push origin master",
"pub": "npm version patch && git push origin master --tags && npm run changelog",
"pub:alpha": "npm version prerelease --preid=alpha && git push origin master --tags"
},
"optionalDependencies": {
"@yuuang/ffi-rs-darwin-arm64": "1.0.55",
"@yuuang/ffi-rs-darwin-x64": "1.0.55",
"@yuuang/ffi-rs-linux-arm64-gnu": "1.0.55",
"@yuuang/ffi-rs-linux-arm-gnueabihf": "1.0.55",
"@yuuang/ffi-rs-linux-arm64-musl": "1.0.55",
"@yuuang/ffi-rs-linux-x64-gnu": "1.0.55",
"@yuuang/ffi-rs-linux-x64-musl": "1.0.55",
"@yuuang/ffi-rs-win32-ia32-msvc": "1.0.55",
"@yuuang/ffi-rs-win32-x64-msvc": "1.0.55",
"@yuuang/ffi-rs-win32-arm64-msvc": "1.0.55"
}
}