-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
55
56
57
{
"name": "@napi-rs/simple-git",
"version": "0.1.22",
"main": "index.js",
"types": "./index.d.ts",
"repository": {
"url": "https://github.com/Brooooooklyn/simple-git"
},
"napi": {
"binaryName": "simple-git",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi",
"powerpc64le-unknown-linux-gnu",
"s390x-unknown-linux-gnu"
]
},
"ava": {
"timeout": "3m",
"workerThreads": false
},
"files": [
"index.js",
"index.d.ts"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.1.5",
"@types/node": "^24.3.0",
"ava": "^7.0.0",
"pretty-ms": "^9.2.0"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"preversion": "napi build --platform && git add .",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"version": "napi version"
},
"packageManager": "yarn@4.12.0"
}