-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "open-codesign",
"version": "0.0.0",
"private": true,
"description": "Open-source AI design tool — prompt to interactive prototype, slide deck, and marketing assets. Multi-model, BYOK, runs on your laptop.",
"license": "Apache-2.0",
"homepage": "https://github.com/OpenCoworkAI/open-codesign",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenCoworkAI/open-codesign.git"
},
"bugs": {
"url": "https://github.com/OpenCoworkAI/open-codesign/issues"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"prepare": "husky",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"docs:dev": "pnpm --filter open-codesign-website dev",
"docs:build": "pnpm --filter open-codesign-website build",
"docs:preview": "pnpm --filter open-codesign-website preview",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"pnpm": {
"neverBuiltDependencies": ["better-sqlite3"]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"husky": "^9.1.7",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}
}