-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@dxfom/explorer",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0",
"type": "module",
"scripts": {
"clean": "node -e \"require('fs').rmSync('docs',{force:true,recursive:true})\" && mkdir docs",
"check": "tsc -p . && biome lint",
"build": "npm run clean && node build.js && npm run check",
"start": "npm run clean && node build.js --serve"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "^1.9.4",
"@luncheon/esbuild-plugin-windicss": "^0.3.0",
"@types/clusterize.js": "^0.18.3",
"babel-preset-solid": "^1.9.3",
"esbuild": "^0.24.2",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-plugin-pipe": "^0.2.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@dxfom/color": "^0.2.0",
"@dxfom/dxf": "^0.2.0",
"@dxfom/mtext": "^0.4.0",
"@dxfom/svg": "^0.0.5",
"@dxfom/text": "^0.3.0",
"clusterize.js": "^1.0.0",
"solid-js": "^1.9.3",
"svg-drag-select": "^0.4.2",
"svg-pan-zoom-container": "^0.6.1"
},
"prettier": {
"printWidth": 140,
"endOfLine": "lf",
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"arrowParens": "avoid"
}
}