-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.17 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
{
"name": "ChalkAI",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"playground": "pnpm --filter playground dev",
"playground:build": "pnpm --filter playground build --outDir=../../dist",
"lint": "eslint . --ext .ts,.vue --fix",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"knowledge": "tsup build scripts/knowledge.ts && node dist/knowledge.js",
"test:workflow": "tsup build workflow/test/main.test.ts && node dist/main.test.cjs"
},
"dependencies": {
"@chalk-ai/workflow": "workspace:*",
"@chalk-dsl/canvas": "workspace:*",
"@chalk-dsl/form": "workspace:*",
"@chalk-dsl/knowledge": "workspace:*",
"@chalk-dsl/layout": "workspace:*",
"@chalk-dsl/math": "workspace:*",
"@chalk-dsl/renderer-core": "workspace:*",
"@chalk-dsl/renderer-runtime": "workspace:*",
"@chalk-dsl/theme-default": "workspace:*",
"@chalk-dsl/utils-theme": "workspace:*",
"@chalk-dsl/widget": "workspace:*",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-regular-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/vue-fontawesome": "^3.1.1",
"@nuxt/eslint": "1.9.0",
"@nuxt/fonts": "0.11.4",
"@nuxt/icon": "2.0.0",
"@unocss/reset": "^66.5.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.43.0",
"jsonrepair": "^3.13.1",
"nuxt": "^4.1.1",
"pg": "^8.16.3",
"sciux": "^0.0.7",
"shiki": "^3.13.0",
"vue": "^3.5.21",
"vue-router": "^4.5.1",
"xsai": "0.4.0-beta.3",
"zod": "^4.1.9",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/pg": "^8.15.5",
"@unocss/nuxt": "^66.5.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.35.0",
"eslint-plugin-vue": "^10.4.0",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript-eslint": "^8.44.0",
"unocss": "^66.5.1",
"vue-eslint-parser": "^10.2.0"
}
}