-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "figma-linux-rust-binding",
"version": "0.2.9",
"description": "Rust module that makes object of meta data of fonts",
"main": "native/index.node",
"author": "ChugunovRoman <[email protected]>",
"engines": {
"node": ">=10.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ChugunovRoman/figma-linux-rust-binding.git"
},
"bugs": {
"url": "https://github.com/ChugunovRoman/figma-linux-rust-binding/issues"
},
"homepage": "https://github.com/ChugunovRoman/figma-linux-rust-binding",
"keywords": [
"Rust",
"nodejs",
"fonts",
"Linux"
],
"license": "GPL-2.0",
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"devDependencies": {
"electron-build-env": "^0.2"
},
"types": "index.d.ts",
"deprecated": false,
"scripts": {
"install": "electron-build-env npm run build-release",
"start": "node ./index.js",
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release"
}
}