-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "@we/app-framework",
"version": "0.1.0",
"description": "",
"license": "MIT",
"type": "module",
"scripts": {
"build:steps": "tsup",
"build": "we-build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"bin": {
"we-seed": "./dist/seed/cli.js"
},
"exports": {
"./shared": {
"import": "./dist/shared/index.js",
"types": "./dist/shared/index.d.ts"
},
"./shared/index.scss": "./src/shared/index.scss",
"./shared/*": {
"import": "./dist/shared/*.js",
"types": "./dist/shared/*.d.ts"
},
"./solid": {
"import": "./src/frameworks/solid/index.ts",
"types": "./src/frameworks/solid/index.ts"
},
"./seed": {
"import": "./dist/seed/index.js",
"types": "./dist/seed/index.d.ts"
}
},
"dependencies": {
"@we/ai-context": "workspace:*",
"@we/cesium-layers": "workspace:*",
"@we/components": "workspace:*",
"@we/design-types": "workspace:*",
"@we/primitives": "workspace:*",
"@we/models": "workspace:*",
"@we/schema-shared": "workspace:*",
"@we/schema-solid": "workspace:*",
"@we/themes": "workspace:*",
"@we/tokens": "workspace:*",
"@we/widgets": "workspace:*",
"@we/block-shared": "workspace:*",
"@we/block-solid": "workspace:*",
"@coasys/ad4m": "0.11.0",
"@solidjs/router": "^0.15.3",
"gsap": "^3.13.0",
"solid-js": "^1.9.5",
"three": "^0.176.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/three": "^0.176.0",
"@vitest/coverage-v8": "^4.0.15",
"@we/cli": "workspace:*",
"tsup": "^8.5.1",
"vitest": "^4.0.15"
}
}