-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 813 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 813 Bytes
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
{
"name": "cascadestudio-monorepo",
"version": "2.0.0",
"private": true,
"productName": "CascadeStudio",
"description": "A full live-scripted CAD kernel and IDE in the browser.",
"homepage": "https://zalo.github.io/CascadeStudio",
"repository": {
"type": "git",
"url": "git+https://github.com/zalo/CascadeStudio.git"
},
"author": {
"name": "Johnathon Selstad"
},
"license": "MIT",
"workspaces": [
"packages/cascade-core",
"packages/cascade-studio"
],
"devDependencies": {
"@playwright/test": "^1.58.2",
"esbuild": "^0.25.0",
"http-server": "^14.1.1"
},
"scripts": {
"postinstall": "node packages/cascade-studio/scripts/postinstall.cjs",
"build": "node packages/cascade-core/scripts/build.cjs && node packages/cascade-studio/scripts/build.cjs",
"test": "playwright test"
}
}