-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.21 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@modfy/tsgql",
"types": "./dist",
"version": "0.0.1",
"napi": {
"name": "core",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl"
]
}
},
"license": "MIT",
"dependencies": {
"@node-rs/helper": "^1.2.1"
},
"devDependencies": {
"@napi-rs/cli": "^1.2.1",
"@swc-node/register": "^1.4.0",
"@types/node": "^16.11.7",
"ava": "^3.15.0"
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version",
"test": "ava"
},
"ava": {
"require": [
"@swc-node/register"
],
"extensions": [
"ts"
],
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
},
"files": [
"__test__/**"
]
}
}