-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 827 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 827 Bytes
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
{
"name": "@setapp/framework-wrapper",
"version": "5.1.0",
"description": "Setapp Framework Node.js wrapper",
"main": "./nodejs/dist/lib/setapp.js",
"scripts": {
"prebuild": "rimraf ./nodejs/dist",
"build": "tsc",
"postbuild": "mkdir ./nodejs/dist/lib/binding && cp ./nodejs/lib/binding/node_setapp_binding.node ./nodejs/dist/lib/binding/node_setapp_binding.node",
"prepublishOnly": "npm run build"
},
"dependencies": {
"node-addon-api": "^7.0.0",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/node": "^20.4.5",
"electron": ">= 13",
"typescript": "^5.1.6"
},
"engines": {
"node": "^16 || ^18 || >= 20"
},
"os": [
"darwin"
],
"files": [
"!.assets",
"!Samples",
"!Sources",
"Setapp.xcframework",
"binding.gyp",
"nodejs"
]
}