-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
25 lines (25 loc) · 879 Bytes
/
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
{
"name": "node-mac-swift-addon",
"version": "1.0.0",
"description": "A native Node.js module that demonstrates basic Swift interop",
"main": "index.js",
"dependencies": {
"nan": "^2.14.1",
"node-gyp": "https://github.com/codebytere/node-gyp/archive/v999.tar.gz"
},
"scripts": {
"build": "./node_modules/.bin/node-gyp build",
"configure": "./node_modules/.bin/node-gyp configure",
"clean": "./node_modules/.bin/node-gyp clean",
"move-target": "mv build/Release/InteropFramework.framework/Versions/A/InteropFramework build/Release/InteropFramework.framework/Versions/A/InteropFramework.node",
"rebuild": "./node_modules/.bin/node-gyp rebuild --ninja && npm run move-target"
},
"keywords": [
"nodejs",
"native-node-addon",
"addon",
"macos"
],
"author": "Shelley Vohr <[email protected]>",
"license": "MIT"
}