forked from lujjjh/node-selection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 859 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
26
27
28
{
"name": "node-selection",
"version": "0.2.0-alpha.0",
"description": "Get current selected text by using system accessibility APIs",
"gypfile": true,
"main": "index.js",
"types": "index.d.ts",
"author": "Jiahao Lu <[email protected]> (https://github.com/lujjjh)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lujjjh/node-selection"
},
"scripts": {
"install": "node-gyp-build",
"rebuild": "npm run install --build-from-source",
"prebuild": "node --experimental-import-meta-resolve misc/fix-abi-registry.mjs && prebuildify -t 8.14.0 --napi --strip",
"prebuild:fat": "npm run prebuild -- --arch x64+arm64"
},
"dependencies": {
"node-addon-api": "^4.3.0",
"node-gyp-build": "^4.4.0"
},
"devDependencies": {
"node-fetch": "^3.2.3",
"prebuildify": "^5.0.0"
}
}