-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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": "deterministic-versions",
"version": "0.5.2",
"description": "deterministic git-based versioning for applications",
"license": "MIT",
"author": "Erick Zhao <erick@hotmail.ca>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tinyspeck/deterministic-versions.git"
},
"bin": "lib/cli.js",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "oxlint . && oxfmt . --check",
"prepublishOnly": "npm run build",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"@octokit/rest": "^22.0.1",
"commander": "^13.1.0",
"dotenv": "^16.0.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/semver": "^7.7.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.0",
"oxfmt": "^0.39.0",
"oxlint": "^1.52.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.{json,md}": [
"oxfmt --write"
],
"*.{js,ts,md}": [
"oxfmt --write",
"oxlint --fix"
]
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.13.0"
}