-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "@lekoarts/thanks-contributors",
"version": "1.2.1",
"main": "index.js",
"bin": "bin.js",
"description": "This little script accesses GitHub's API to get all contributors and their PRs between two distinct points in the history of commits. This is helpful for changelogs where you'd want to list all contributions for that release (so e.g. changes between v1 and v1.1).",
"types": "index.d.ts",
"napi": {
"name": "thanks-contributors",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl"
]
}
},
"files": [
"bin.js",
"index.js",
"index.d.ts"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.18.4",
"@types/prettier": "^3.0.0",
"execa": "^9.3.0",
"prettier": "^3.3.2",
"strip-ansi": "^7.1.0",
"vitest": "^2.0.2"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"napi": "napi",
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"version": "napi version",
"test:watch": "vitest watch",
"test": "vitest run",
"format": "prettier --write ."
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "es5"
},
"packageManager": "yarn@3.3.1"
}