-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "@node-projects/layout2vector",
"version": "5.2.0",
"description": "DOM → Geometry → DXF/PDF/PNG library",
"repository": {
"type": "git",
"url": "git+https://github.com/node-projects/layout2vector.git"
},
"author": "Jochen Kühner <jochen.kuehner@gmx.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-projects/layout2vector/issues"
},
"homepage": "https://github.com/node-projects/layout2vector#readme",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "npx playwright test",
"test:unit": "npx playwright test --project=unit",
"test:integration": "npx playwright test --project=integration",
"test:ui": "npx playwright test --project=ui",
"test:demos": "npx playwright test --project=demos",
"prepublishOnly": "npm run build && npm run bundle",
"bundle": "esbuild ./dist/index.js --format=esm --minify --external:@tarikjabiri/dxf --external:@node-projects/acad-ts --external:@chenglou/pretext --platform=neutral --bundle --outfile=./dist/index-min.js"
},
"dependencies": {
"@node-projects/acad-ts": "^2.0.0",
"@tarikjabiri/dxf": "^2.8.9",
"esbuild": "^0.28.0"
},
"peerDependencies": {
"@chenglou/pretext": "^0.0.5"
},
"peerDependenciesMeta": {
"@chenglou/pretext": {
"optional": true
}
},
"devDependencies": {
"@chenglou/pretext": "^0.0.5",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"get-box-quads-polyfill": "^4.29.0",
"typescript": "^6.0.2"
}
}