-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1013 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1013 Bytes
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
{
"name": "commit-generator",
"version": "1.0.0",
"description": "",
"scripts": {
"prepare": "husky",
"precommit": "turbo run precommit",
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix --filter=[HEAD]",
"test": "turbo run test",
"test:watch": "vitest watch",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"publish-packages": "turbo run build typecheck test && changeset publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@vitest/coverage-v8": "^1.6.0",
"husky": "^9.0.11",
"tsup": "^8.3.6",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"dependencies": {
"turbo": "^2.4.0"
},
"packageManager": "pnpm@10.5.2"
}