-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "steamworks.js",
"version": "0.4.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "steamworksjs",
"triples": {
"additional": [
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin"
]
}
},
"files": [
"dist/*",
"index.js",
"*.d.ts",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "2.18.4",
"electron": "24.2.0",
"rimraf": "6.0.1",
"typescript": "5.5.3"
},
"dependencies": {
"@types/node": "*"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "npm run types && node build --release",
"build:debug": "node build",
"prune": "rimraf dist target client.d.ts",
"format": "cargo clippy --fix --allow-staged && cargo fmt",
"types": "tsc index.js --allowJs --declaration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/ceifa/steamworks.js"
}
}