-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "es-git",
"version": "0.0.14",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"bugs": "https://github.com/toss/es-git/issues",
"repository": {
"type": "git",
"url": "https://github.com/toss/es-git.git"
},
"license": "MIT",
"packageManager": "yarn@4.6.0",
"napi": {
"name": "es-git",
"triples": {
"defaults": false,
"additional": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
}
},
"engines": {
"node": ">= 10.7.0"
},
"workspaces": [
"docs"
],
"scripts": {
"prepublishOnly": "napi prepublish -t npm",
"build": "napi build --platform --release --pipe=\"yarn transform:dts\"",
"build:debug": "DEBUG=\"napi:*\" napi build --platform --pipe=\"yarn transform:dts\"",
"transform:dts": "jscodeshift -t transforms/dts.mjs index.d.ts",
"check": "biome check",
"check:fix": "biome check --write --unsafe"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@napi-rs/cli": "^2.18.4",
"@types/jscodeshift": "^0.12.0",
"@types/node": "^22.8.4",
"fast-glob": "^3.3.3",
"jscodeshift": "^17.1.2",
"typescript": "5.7.3",
"vitest": "^3.0.5"
}
}