forked from nwpointer/three-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "three-landscape",
"description": "r3f custom terrain component for rendering high quality 3d landscapes",
"version": "0.4.0",
"license": "MIT",
"bugs": {
"url": "https://github.com/nwpointer/three-landscape/issues"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c && npm run copy",
"test": "jest ./test",
"copy": "copyfiles package.json readme.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.husky=undefined; this.prettier=undefined; this.jest=undefined; this['lint-staged']=undefined;\""
},
"jest": {
"preset": "rollup-jest",
"testMatch": [
"**/test/**/*.test.js"
],
"modulePathIgnorePatterns": [
"examples"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nwpointer/three-landscape"
},
"main": "dist/index.js",
"module": "dist/index.js",
"sideEffects": false,
"keywords": [
"r3f",
"react",
"three.js",
"landscape",
"terrain",
"material",
"shader"
],
"dependencies": {
"@babel/runtime": "^7.11.2",
"@react-three/drei": "^7.19.4",
"react": ">=17.0",
"react-dom": ">=17.0",
"three": "^0.134.0",
"three-stdlib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@react-three/fiber": "^6.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"glslify-loader": "^2.0.0",
"jest": "^26.6.3",
"json": "^11.0.0",
"nodemon": "^2.0.14",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.48.0",
"rollup-jest": "^1.1.3",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"@react-three/fiber": ">=6.0",
"react": ">=17.0",
"react-dom": ">=17.0",
"three": "^0.134.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}