-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 786 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 786 Bytes
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
{
"name": "three-mf",
"version": "1.1.0",
"module": "dist/index.js",
"type": "module",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "bun test",
"dev": "bun run --watch index.ts",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"prepare": "bun run build",
"prepublishOnly": "bun run test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jszip": "^3.4.1",
"stl": "^1.1.1",
"typescript": "^5.8.3"
},
"dependencies": {
"fast-xml-parser": "^4.1.4",
"jszip": "^3.10.1",
"uuid": "^11.1.0"
}
}