-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.55 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
{
"name": "vsync-repo",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "vsync - One config. Many AI tools. Zero pain.",
"repository": {
"type": "git",
"url": "https://github.com/nicepkg/vsync.git"
},
"license": "MIT",
"scripts": {
"dev:website": "pnpm --filter website dev",
"build:website": "pnpm --filter website build",
"start:website": "pnpm --filter website start",
"start:static-website": "pnpm --filter website start:static",
"dev:cli": "pnpm --filter @nicepkg/vsync dev",
"build:cli": "pnpm --filter @nicepkg/vsync build",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"typecheck": "pnpm -r run typecheck",
"clean": "rm -rf node_modules vsync/node_modules website/node_modules website/.next",
"prepare": "husky",
"release": "semantic-release"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@commitlint/types": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"wrangler": "^4.60.0"
}
}