-
Notifications
You must be signed in to change notification settings - Fork 917
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "webstudio",
"version": "0.0.0-webstudio-version",
"description": "Webstudio CLI",
"author": "Webstudio <github@webstudio.is>",
"homepage": "https://webstudio.is",
"type": "module",
"bin": {
"webstudio-cli": "./bin.js",
"webstudio": "./bin.js"
},
"imports": {
"#cli": {
"webstudio": "./src/cli.ts",
"default": "./lib/cli.js"
}
},
"files": [
"lib/*",
"templates/*",
"bin.js",
"!*.{test,stories}.*"
],
"scripts": {
"typecheck": "tsc",
"build": "rm -rf lib && vite build",
"test": "vitest run"
},
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=20.12"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@emotion/hash": "^0.9.2",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"change-case": "^5.4.4",
"deepmerge": "^4.3.1",
"env-paths": "^3.0.0",
"nanoid": "^5.0.9",
"p-limit": "^6.2.0",
"parse5": "7.2.1",
"picocolors": "^1.1.1",
"reserved-identifiers": "^1.0.0",
"tinyexec": "^0.3.2",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@netlify/remix-adapter": "^2.5.1",
"@netlify/remix-edge-adapter": "3.4.2",
"@react-router/dev": "^7.1.4",
"@react-router/fs-routes": "^7.1.4",
"@remix-run/cloudflare": "^2.15.2",
"@remix-run/cloudflare-pages": "^2.15.2",
"@remix-run/dev": "^2.15.2",
"@remix-run/node": "^2.15.2",
"@remix-run/react": "^2.15.2",
"@remix-run/server-runtime": "^2.15.2",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.25",
"@types/yargs": "^17.0.33",
"@vitejs/plugin-react": "^4.3.4",
"@webstudio-is/http-client": "workspace:*",
"@webstudio-is/image": "workspace:*",
"@webstudio-is/react-sdk": "workspace:*",
"@webstudio-is/sdk": "workspace:*",
"@webstudio-is/sdk-components-animation": "workspace:*",
"@webstudio-is/sdk-components-react": "workspace:*",
"@webstudio-is/sdk-components-react-radix": "workspace:*",
"@webstudio-is/sdk-components-react-remix": "workspace:*",
"@webstudio-is/sdk-components-react-router": "workspace:*",
"@webstudio-is/tsconfig": "workspace:*",
"h3": "^1.14.0",
"ipx": "^3.0.1",
"prettier": "3.4.2",
"react": "18.3.0-canary-14898b6a9-20240318",
"react-dom": "18.3.0-canary-14898b6a9-20240318",
"react-router": "^7.1.4",
"ts-expect": "^1.3.0",
"vike": "^0.4.220",
"vite": "^5.4.11",
"vitest": "^3.0.2",
"wrangler": "^3.63.2"
}
}