-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "oopetris",
"version": "1.0.3",
"description": "Node js wrapper for oopetris",
"gypfile": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"prebuilds/",
"src/cpp/",
"binding.gyp",
"package.json",
"README.md"
],
"private": false,
"scripts": {
"install": "node-gyp-build",
"build": "npm run build:gyp && npm run compile",
"build:gyp": "prebuildify -t 18.20.4 -t 20.18.0 -t 21.7.3 -t 22.11.0 -t 23.1.0 --strip",
"build:debug": "prebuildify -t 18.20.4 -t 20.18.0 -t 21.7.3 -t 22.11.0 -t 23.1.0 --debug",
"compile": "npm run build:tsc",
"build:tsc": "tsc",
"test": "npx jest",
"build:test": "npm run build && npm run test",
"publish:package": "npm run build:test && npm publish --tag latest --access public"
},
"keywords": [
"oopetris",
"cpp",
"node-gyp"
],
"author": {
"name": "Totto16",
"url": "https://github.com/Totto16"
},
"license": "MIT",
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 || ^23.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBrickProtocolFoundation/oopetris.git"
},
"dependencies": {
"node-gyp-build": "^4.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"nan": "^2.22.0",
"prebuildify": "^6.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}