-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "@node-projects/layout2vector",
"version": "2.0.0",
"description": "DOM → Geometry → DXF/PDF/PNG library",
"license": "MIT",
"author": "Jochen Kühner <jochen.kuehner@gmx.de>",
"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 --platform=neutral --bundle --outfile=./dist/index-min.js"
},
"dependencies": {
"@tarikjabiri/dxf": "^2.8.9",
"esbuild": "^0.28.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.5.2",
"get-box-quads-polyfill": "^4.29.0",
"typescript": "^6.0.2"
}
}