-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "three-map-terrain",
"version": "1.0.1",
"description": "A JavaScript library to build 3D maps with three.js",
"author": "WhidRubeld <whidrubeld@gmail.com>",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src/**/*.{ts,tsx}",
"format": "prettier . --write"
},
"keywords": [
"three",
"map",
"terrain",
"landscape",
"geolocation",
"react"
],
"bugs": {
"url": "https://github.com/WhidRubeld/three-map-terrain/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhidRubeld/three-map-terrain.git"
},
"homepage": "https://github.com/WhidRubeld/three-map-terrain#readme",
"devDependencies": {
"@types/get-pixels": "^3.3.2",
"@types/three": "^0.148.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"get-pixels": "^3.3.2",
"prettier": "^2.8.3",
"three": "^0.149.0",
"typescript": "^4.9.5",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.2",
"vite-plugin-node-polyfills": "^0.7.0"
},
"peerDependencies": {
"three": "^0.148.0"
},
"publishConfig": {
"access": "public"
}
}