-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "ultracode-ai-monorepo",
"version": "1.4.0",
"private": true,
"type": "module",
"description": "UltraCode – Open-Source AI Code Assistant with AI-powered versioning and release planning",
"license": "AGPL-3.0-or-later",
"author": "SIMO GmbH",
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.5.2",
"scripts": {
"build": "tsc -b packages/shared packages/core packages/cli",
"clean": "node scripts/clean.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --project e2e",
"typecheck": "tsc -b packages/shared packages/core packages/cli",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"biome:ci": "biome ci .",
"check:suppressions": "bash scripts/check-suppressions.sh",
"check:branding": "bash scripts/check-branding.sh",
"check:filesize": "bash scripts/check-file-size.sh",
"release:check": "bash scripts/release-check.sh",
"release": "bash scripts/release.sh",
"ci:local": "bash scripts/ci.sh",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SIMOSphereOS/ultracode-ai.git"
},
"homepage": "https://github.com/SIMOSphereOS/ultracode-ai#readme",
"bugs": {
"url": "https://github.com/SIMOSphereOS/ultracode-ai/issues"
}
}