-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
59 lines (59 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
{
"name": "creep-cube",
"private": true,
"description": "一个使用 Three.js 实现的魔方小游戏",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "rollup --config rollup.config.dev.js -w",
"build": "rollup --config rollup.config.build.js"
},
"homepage": "https://github.com/buuing/creep-cube",
"bugs": "https://github.com/buuing/creep-cube/issues",
"repository": "git+https://github.com/buuing/creep-cube.git",
"author": "ldq <[email protected]>",
"files": [
"dist",
"types"
],
"keywords": [
"Threejs魔方"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.16.3",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/animejs": "^3.1.4",
"@types/three": "^0.137.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"core-js": "^3.19.2",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"tweakpane": "^3.0.7",
"typescript": "^4.0.5"
},
"dependencies": {
"animejs": "^3.2.1",
"three": "^0.135.0"
}
}