-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.32 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
65
66
67
68
{
"name": "@openclaw/carapace",
"version": "0.6.2",
"description": "Carapace: canonical web design tokens, styles, and agent guidance for OpenClaw.",
"license": "MIT",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/openclaw/carapace.git"
},
"homepage": "https://carapace.design/",
"sideEffects": [
"**/*.css"
],
"files": [
"styles",
"js",
"README.md",
"LICENSE"
],
"exports": {
".": "./styles/styles.css",
"./styles.css": "./styles/styles.css",
"./tokens.css": "./styles/tokens.css",
"./themes.css": "./styles/themes.css",
"./themes/product.css": "./styles/themes/product.css",
"./typography.css": "./styles/typography.css",
"./base.css": "./styles/base.css",
"./components.css": "./styles/components.css",
"./candidate/controls.css": "./styles/candidate/controls.css",
"./candidate/feedback.css": "./styles/candidate/feedback.css",
"./candidate/data.css": "./styles/candidate/data.css",
"./candidate/application.css": "./styles/candidate/application.css",
"./candidate/agent.css": "./styles/candidate/agent.css",
"./candidate/embed.css": "./styles/candidate/embed.css",
"./tailwind.css": "./styles/tailwind.css",
"./compat/clawhub.css": "./styles/compat/clawhub.css",
"./package.json": "./package.json",
"./charts.js": "./js/charts.js"
},
"scripts": {
"check": "bun run test && bun run contract:check && bun run skills:check && bun run pack:check",
"preview:build": "vite build --config preview/vite.config.ts",
"preview:dev": "vite --config preview/vite.config.ts --host 127.0.0.1 --port 4173",
"terminal-ui:capture": "node scripts/capture-terminal-ui.mjs",
"candidate:pack": "bun scripts/pack-candidate.ts",
"test": "bun test",
"contract:check": "bun scripts/check-contract.ts",
"skills:check": "bun scripts/validate-skills.ts",
"pack:check": "bun scripts/check-package.ts",
"release:check": "bun scripts/check-release-version.ts"
},
"devDependencies": {
"@openclaw/libterminal": "0.3.2",
"lightningcss": "1.33.0",
"lucide": "1.34.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwindcss": "4.3.3",
"vite": "8.2.2",
"yaml": "2.9.0"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.4.0"
}