-
-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 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": "simple-release-tools",
"type": "module",
"private": true,
"version": "3.3.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": ">=22"
},
"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",
"docs:dev": "pnpm --filter website dev",
"docs:build": "pnpm --filter website build"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@commitlint/config-pnpm-scopes": "^21.0.0",
"@commitlint/cz-commitlint": "^21.0.0",
"@trigen/oxlint": "^10.1.1",
"@trigen/oxlint-config": "^10.1.2",
"@trigen/scripts": "^10.1.1",
"@types/node": "^22.16.2",
"@vitest/coverage-v8": "^4.1.9",
"clean-publish": "5.2.2",
"commitizen": "^4.2.4",
"del-cli": "^7.0.0",
"nano-staged": "^1.0.0",
"oxlint": "^1.71.0",
"oxlint-tsgolint": "^0.24.0",
"simple-git-hooks": "^2.7.0",
"tsm": "^2.3.0",
"typescript": "^7.0.0",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}