-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 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": "vibe-monorepo",
"version": "1.1.0",
"private": true,
"type": "module",
"description": "Monorepo for vibe CLI - Git worktree management tool",
"repository": {
"type": "git",
"url": "git+https://github.com/kexi/vibe.git"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.26.2",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "bun run main.ts",
"build": "bun run scripts/build.ts",
"build:compile": "bun build --compile --minify --outfile vibe main.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"check": "tsc --noEmit",
"ci": "pnpm run fmt:check && pnpm run lint && pnpm run check && pnpm run test",
"generate-version": "bun run scripts/build.ts --generate-version-only",
"get-version": "node -e \"console.log(JSON.parse(require('fs').readFileSync('package.json')).version)\"",
"install:all": "pnpm install",
"build:npm": "pnpm -C packages/npm build",
"build:native": "pnpm -C packages/native build",
"test:npm": "pnpm -C packages/npm test",
"test:e2e": "pnpm -C packages/e2e test",
"clean": "pnpm -r exec rm -rf node_modules dist",
"check:docs": "pnpm -C packages/docs lint && pnpm -C packages/docs format && pnpm -C packages/docs check",
"check:video": "pnpm -C packages/video typecheck",
"check:all": "pnpm run ci && pnpm run check:docs && pnpm run check:video"
},
"dependencies": {
"fast-glob": "^3.3.3",
"smol-toml": "^1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/deno": "^2.5.0",
"bun-types": "1.1.43",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-security": "^3.0.1",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}