-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
{
"name": "figma-linux-bindings",
"main": "build/Release/bindings.node",
"version": "0.1.18",
"description": "C++ module that makes object of meta data of fonts",
"scripts": {
"start": "node --experimental-modules test/index.mjs",
"build": "node-gyp configure && node-gyp build --static -j `nproc`",
"build-dev": "node-gyp configure && node-gyp build --static --debug -j `nproc`",
"rebuild": "bash -c 'HOME=~/.electron-gyp node-gyp rebuild --target=$0 --arch=x64 --dist-url=https://atom.io/download/electron --static -j `nproc`'",
"install": "bash -c '[[ -d ../electron ]] && npm run rebuild `../electron/cli.js -v | tr -d v` || npm run build'",
"clear": "rm -rf ./build/*"
},
"engines": {
"node": ">=10.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ChugunovRoman/figma-linux-bindings.git"
},
"bugs": {
"url": "https://github.com/ChugunovRoman/figma-linux-bindings/issues"
},
"homepage": "https://github.com/ChugunovRoman/figma-linux-bindings",
"keywords": [
"C++",
"nodejs",
"ttf",
"fonts",
"Linux"
],
"author": "Chugunov Roman",
"license": "GPL-2.0",
"devDependencies": {
"node-gyp": "^3.8.0"
},
"dependencies": {
"nan": "^2.13.2"
},
"types": "index.d.ts",
"deprecated": false,
"gypfile": true
}