-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.03 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
{
"version": "1.1.3",
"name": "quick_flipbook",
"description": "A quick way to create a flipbook",
"repository": {
"type": "git",
"url": "https://github.com/bandinopla/quick_flipbook.git"
},
"packageManager":"pnpm@8.14.1",
"author": "Bandinopla",
"license": "BSD-2-Clause",
"scripts": {
"dev": "vite",
"build": "vite build && tsc"
},
"main": "./dist/flipbook.js",
"module": "./dist/flipbook.mjs",
"types": "./dist/FlipBook.d.ts",
"exports": {
".": {
"import": {
"default":"./dist/flipbook.mjs",
"types":"./dist/FlipBook.d.ts"
},
"require": "./dist/flipbook.js"
}
},
"files": [
"./dist/flipbook.mjs",
"./dist/flipbook.js",
"./dist/*.d.ts"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"vite": "^5.0.8",
"typescript": "^5.3.3",
"@types/three": "^0.161.2"
},
"dependencies": {
"three.modifiers": "^2.5.7"
},
"peerDependencies": {
"three": ">=0.160.1"
}
}