-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "scripts",
"type": "module",
"private": true,
"version": "8.3.1",
"description": "Scripts and configs for TrigenSoftware's projects.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/scripts.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/scripts/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"clear": "del './packages/*/package' ./coverage ./node_modules/.cache",
"lint:package-json": "lint-package-json --monorepo",
"lint": "eslint --flag v10_config_lookup_from_file",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"test": "run -p lint test:unit",
"commit": "cz",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/config-pnpm-scopes": "^20.0.0",
"@commitlint/cz-commitlint": "^20.0.0",
"@trigen/eslint-config": "workspace:*",
"@trigen/lint-package-json": "workspace:*",
"@trigen/project-files": "workspace:*",
"@trigen/scripts": "workspace:*",
"clean-publish": "^5.0.0",
"commitizen": "^4.3.1",
"del-cli": "^7.0.0",
"eslint": "9.31.0",
"inquirer": "^9.3.7",
"nano-staged": "^0.9.0",
"npm-package-json-lint": "^9.0.0",
"simple-git-hooks": "^2.7.0",
"vite": "^7.0.0",
"vitest": "^4.0.0"
}
}