-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "@nicepkg/vsync",
"version": "1.0.6",
"description": "CLI for vsync - AI coding tool config synchronizer",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"vsync": "./dist/index.js"
},
"files": [
"dist",
"!dist/*.map"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm build"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@types/mock-fs": "^4.13.4",
"@types/node": "^25.0.10",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.3.0",
"gray-matter": "^4.0.3",
"inquirer": "^13.2.1",
"jsonc-eslint-parser": "^2.4.2",
"jsonc-parser": "^3.3.1",
"mock-fs": "^5.5.0",
"ora": "^9.1.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
}
}