-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.52 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
59
60
61
{
"name": "@shined/source-code-diagnosis",
"version": "0.0.83",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "source-code-diagnosis",
"triples": {
"defaults": false,
"additional": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl"
]
}
},
"repository": {
"url": "https://github.com/sheinsight/source-code-diagnosis"
},
"publishConfig": {
"access": "public"
},
"files": ["index.js", "index.d.ts"],
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.8.2",
"@napi-rs/cli": "^2.18.4",
"@types/node": "^22.5.5",
"ava": "^6.0.1",
"clean-pkg-json": "^1.2.0",
"vitest": "^2.1.1"
},
"optionalDependencies": {
"@rollup/rollup-win32-ia32-msvc": "*"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build:js": "napi build --cargo-cwd crates/binding --platform --js index.js --dts index.d.ts",
"build": "napi build --cargo-cwd crates/binding --platform --release",
"build:debug": "napi build --cargo-cwd crates/binding --platform",
"prepublishOnly": "napi prepublish -t npm --gh-release-id $GITHUB_REF_NAME",
"test:ava": "ava",
"hello": "echo $GITHUB_REF_NAME",
"test": "vitest run",
"universal": "napi universal",
"version": "napi version"
}
}