-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.27 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.27 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
{
"name": "blade-monorepo",
"version": "0.1.10",
"private": true,
"description": "🗡️ Blade Code - Monorepo for AI-powered coding assistant",
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:cli": "pnpm --filter blade-code dev",
"dev:web": "pnpm --filter blade-code dev:serve & VITE_API_TARGET=http://localhost:4097 pnpm -C packages/cli/web dev",
"build": "pnpm -r build",
"build:cli": "pnpm --filter blade-code build",
"build:vscode": "pnpm --filter blade-vscode build",
"test": "pnpm --filter blade-code test",
"test:all": "pnpm --filter blade-code test:all",
"test:unit": "pnpm --filter blade-code test:unit",
"test:integration": "pnpm --filter blade-code test:integration",
"test:cli": "pnpm --filter blade-code test:cli",
"test:coverage": "pnpm --filter blade-code test:coverage",
"test:watch": "pnpm --filter blade-code test:watch",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"format": "biome format --write packages",
"format:check": "biome format packages",
"check": "biome check packages",
"check:fix": "biome check --write packages",
"type-check": "pnpm -r type-check",
"clean": "pnpm -r exec rm -rf dist node_modules/.cache coverage",
"clean:all": "rm -rf node_modules packages/*/node_modules pnpm-lock.yaml",
"preflight": "pnpm clean && pnpm install && pnpm format && pnpm lint && pnpm build && pnpm type-check && pnpm test:all",
"release": "pnpm --filter blade-code release",
"release:dry": "pnpm --filter blade-code release:dry",
"release:major": "pnpm --filter blade-code release:major",
"release:minor": "pnpm --filter blade-code release:minor",
"release:patch": "pnpm --filter blade-code release:patch"
},
"keywords": [
"cli",
"blade",
"ai",
"assistant",
"agent",
"llm",
"monorepo"
],
"author": "echoVic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/echoVic/blade-code.git"
},
"homepage": "https://github.com/echoVic/blade-code",
"bugs": {
"url": "https://github.com/echoVic/blade-code/issues"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"knip": "^5.80.0",
"typescript": "^5.9.2"
}
}