-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 2.23 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 2.23 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
{
"name": "@ui8kit/framework",
"version": "0.0.1",
"description": "Next generation UI system for React & HTML5/CSS3 - type-safe components with semantic static generation",
"private": true,
"license": "GPL-3.0",
"keywords": ["ui", "react", "html5", "css3", "semantic", "static-site", "monorepo", "turbo"],
"type": "module",
"author": {
"name": "buildy",
"url": "https://ui.buildy.tw"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bunx turbo run dev",
"build": "bunx turbo run build",
"preview": "bunx turbo run preview",
"test": "bunx turbo run test",
"lint": "bunx turbo run lint",
"lint:dsl:engine": "bun run packages/lint/src/cli/validate-dsl.ts apps/engine/src",
"generate": "bunx turbo run generate --filter=./apps/docs --filter=./apps/web",
"generate:docs": "bunx turbo run generate --filter=./apps/docs",
"generate:web": "bunx turbo run generate --filter=./apps/web",
"generate:engine": "bunx turbo run generate --filter=./apps/engine",
"copy-templates-to-dev": "bun run scripts/copy-templates-to-dev.ts",
"copy-templates-to-test": "TARGET_APP=test bun run scripts/copy-templates-to-dev.ts",
"pipeline-app": "bun run scripts/pipeline-app.ts",
"pipeline:dev": "bun run scripts/pipeline-app.ts all --target dev --domain website",
"pipeline:test": "bun run scripts/pipeline-app.ts all --target test --domain website",
"scaffold-app": "bun run scripts/scaffold-app.ts",
"install-app": "bash scripts/installer.sh",
"clean:engine": "bash scripts/clean-engine.sh",
"sync-app": "bun run scripts/pipeline-app.ts sync",
"sync-dev": "bun run scripts/pipeline-app.ts sync --target dev --domain website",
"sync-test": "bun run scripts/pipeline-app.ts sync --target test --domain website",
"sync:website": "bun run scripts/pipeline-app.ts sync --domain website",
"sync:docs": "bun run scripts/pipeline-app.ts sync --domain docs",
"sync:examples": "bun run scripts/pipeline-app.ts sync --domain examples",
"sync:dashboard": "bun run scripts/pipeline-app.ts sync --domain dashboard",
"m": "bash scripts/engine.sh"
},
"packageManager": "bun@1.3.3",
"devDependencies": {
"serve": "^14.2.5",
"turbo": "^2.5.6"
}
}