-
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) · 759 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 759 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": "inochi2d",
"version": "0.0.0",
"description": "Inochi2D library written in TypeScript",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/three": "^0.146.0",
"typescript": "^4.9.5",
"vite": "^3.2.7",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@lunapaint/tga-codec": "^0.1.0",
"binary-parser": "^2.2.1",
"fast-png": "^6.1.0",
"three": "^0.146.0"
},
"files": [
"dist"
],
"main": "./dist/inochi2d.umd.js",
"module": "./dist/inochi2d.es.js",
"exports": {
".": {
"import": "./dist/inochi2d.es.js",
"require": "./dist/inochi2d.umd.js"
}
}
}