-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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": "@rspack-template/binding",
"version": "0.0.2",
"homepage": "https://github.com/rspack-contrib/rspack-binding-template",
"bugs": {
"url": "https://github.com/rspack-contrib/rspack-binding-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rspack-contrib/rspack-binding-template.git",
"directory": "crates/binding"
},
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "napi build --platform"
},
"devDependencies": {
"@napi-rs/cli": "3.0.0-alpha.92",
"@types/node": "^24.0.12",
"typescript": "^5.8.3"
},
"napi": {
"binaryName": "binding",
"targets": [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi",
"armv7-unknown-linux-gnueabihf",
"aarch64-linux-android"
]
}
}