-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
45
46
47
48
49
{
"name": "landxml",
"version": "0.6.4",
"description": "Parse LandXML surfaces on the modern web.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"private": false,
"homepage": "https://github.com/abrman/landxml#readme",
"repository": {
"type": "git",
"url": "https://github.com/abrman/landxml"
},
"scripts": {
"dev": "vitest --config ./vitest.config.ts --slow-test-threshold=0",
"test": "vitest --config ./vitest.config.ts run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "npm run lint && npm run test && npm run build",
"release": "npm run lint && npm run test && npm run build && changeset publish"
},
"keywords": [
"landxml",
"geojson",
"gltf"
],
"author": "Matthew Abrman",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/geojson": "^7946.0.13",
"@types/proj4": "^2.5.5",
"@types/sax": "^1.2.7",
"@types/xml2json": "^0.11.6",
"jsdom": "^24.0.0",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@gltf-transform/core": "^3.9.0",
"@vitest/web-worker": "^1.6.0",
"easy-web-worker": "^6.2.0",
"proj4": "^2.9.2",
"sax": "^1.3.0",
"xml-js": "^1.6.11",
"xml2json": "^0.12.0"
}
}