-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "simple-release-tools",
"type": "module",
"private": true,
"version": "2.4.0",
"description": "A simple tools to automate releases.",
"author": "dangreen",
"license": "MIT",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/simple-release-tools.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/simple-release-tools/issues"
},
"engines": {
"node": ">=18"
},
"scripts": {
"clear": "pnpm -r --parallel clear",
"build": "pnpm -r --parallel build",
"lint": "pnpm -r --parallel --if-present lint",
"test:unit": "pnpm -r --parallel --if-present test:unit",
"test:types": "pnpm -r --parallel --if-present test:types",
"test": "run -p lint test:unit test:types",
"commit": "cz",
"updateGitHooks": "simple-git-hooks",
"release": "echo todo"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/config-pnpm-scopes": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@trigen/eslint-config": "^8.0.3",
"@trigen/scripts": "^8.0.0",
"@vitest/coverage-v8": "^4.0.0",
"clean-publish": "5.2.2",
"commitizen": "^4.2.4",
"del-cli": "^6.0.0",
"eslint": "^9.30.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.7.0",
"tsm": "^2.3.0",
"typescript": "5.8.3",
"vite": "^7.0.0",
"vitest": "^4.0.0"
}
}