-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.16 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
68
69
70
71
72
73
74
{
"name": "openscad-playground",
"version": "0.2.0",
"private": true,
"type": "module",
"homepage": "https://ochafik.com/openscad2/",
"description": "OpenSCAD Playground - Browser-based OpenSCAD editor with 3D preview. Frontend: Lit + biu, Backend: Deno.",
"scripts": {
"dev": "biu --serve",
"build": "biu",
"preview": "biu --serve 3000",
"build:libs": "LIBS_BUILD_MODE=all webpack --config webpack.libs.config.js",
"build:libs:clean": "LIBS_BUILD_MODE=clean webpack --config webpack.libs.config.js",
"build:libs:wasm": "LIBS_BUILD_MODE=wasm webpack --config webpack.libs.config.js",
"build:libs:fonts": "LIBS_BUILD_MODE=fonts webpack --config webpack.libs.config.js",
"build:all": "npm run build:libs && npm run build"
},
"dependencies": {
"@gltf-transform/core": "^4.4.0",
"@gltf-transform/extensions": "^4.4.0",
"@monaco-editor/loader": "^1.7.0",
"blurhash": "^2.0.5",
"browserfs": "^1.4.3",
"chroma-js": "^3.2.0",
"jszip": "^3.10.1",
"lit": "^3.3.3",
"monaco-editor": "^0.52.2",
"thumbhash": "^0.1.1",
"uuid": "^11.1.1",
"uzip": "^0.20201231.0"
},
"devDependencies": {
"@types/chroma-js": "^2.4.5",
"@types/debug": "^4.1.13",
"@types/filesystem": "^0.0.36",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.21",
"@types/uzip": "^0.20201231.2",
"@types/web": "^0.0.140",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.4",
"jest": "^29.7.0",
"jest-puppeteer": "^11.0.0",
"lit-analyzer": "^2.0.3",
"livereload": "^0.9.3",
"puppeteer": "^23.11.1",
"serve": "^14.2.6",
"style-loader": "^4.0.0",
"ts-loader": "^9.6.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"webpack": "^5.107.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.5",
"workbox-webpack-plugin": "^7.4.1"
},
"engines": {
"node": ">=18.12.0",
"deno": ">=2.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}