-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "developwise",
"version": "1.0.2",
"private": true,
"description": "A TypeScript-first collection of tools, libraries, and agent workflows for cleaner, safer, maintainable, type-safe, and debuggable software.",
"keywords": [
"developer-tools",
"developwise",
"monorepo",
"tooling",
"typescript",
"vite"
],
"homepage": "https://github.com/its-tim-lee/developwise#readme",
"bugs": {
"url": "https://github.com/its-tim-lee/developwise/issues"
},
"license": "MIT",
"author": {
"name": "Tim Lee",
"url": "https://github.com/its-tim-lee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/its-tim-lee/developwise.git"
},
"funding": "https://buymeacoffee.com/timlee",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"tools/*"
],
"catalog": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^24",
"typescript": "^5",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest",
"vite-plus": "latest"
}
},
"type": "module",
"scripts": {
"ready": "vp fmt --check && vp run check && vp run check:release-please && vp run -r check && vp run -r test && vp run -r build",
"check": "vp check package.json vite.config.ts commitlint.config.ts .czrc.ts metadata/**/*.ts scripts/**/*.ts .prek/hooks/**/*.ts",
"dev": "vp run -r --parallel dev",
"prepare": "prek install",
"commit": "cz",
"generate:release-please": "tsx scripts/generate-release-please-configs.ts",
"check:release-please": "tsx scripts/generate-release-please-configs.ts --check"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.3",
"@j178/prek": "^0.3.11",
"@total-typescript/ts-reset": "catalog:",
"@types/node": "catalog:",
"commitizen": "^4.3.1",
"commitlint": "^20.5.3",
"cz-conventional-changelog": "^3.3.0",
"globby": "^16.2.0",
"tsx": "^4.21.0",
"vite-plus": "catalog:"
},
"overrides": {
"vite": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "bun@1.3.9"
}