-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
100 lines (100 loc) · 2.93 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
{
"name": "@googlemaps/three",
"version": "4.0.17",
"type": "module",
"keywords": [
"google",
"maps",
"webgl",
"threejs"
],
"homepage": "https://github.com/googlemaps/js-three",
"bugs": {
"url": "https://github.com/googlemaps/js-three/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-three.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"source": "src/index.ts",
"main": "dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js",
"umd": "./dist/index.umd.js",
"browser": "./dist/index.esm.js"
}
},
"unpkg": "dist/index.min.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"/src",
"/dist"
],
"scripts": {
"build:examples": "rm -rf public && rollup -c rollup.config.examples.js",
"docs": "typedoc src/index.ts && npm run build:examples && cp -r dist docs/dist && cp -r public docs/public",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "rm -rf dist && rollup -c",
"start": "run-p start:*",
"start:rollup": "rollup -c rollup.config.examples.js -w --no-watch.clearScreen",
"start:server": "http-server ./public",
"test": "jest --coverage=true src/*",
"test:e2e": "jest --passWithNoTests e2e/*"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@babel/preset-modules": "^0.1.6",
"@babel/runtime-corejs3": "^7.25.7",
"@googlemaps/jest-mocks": "^2.21.4",
"@googlemaps/js-api-loader": "^1.16.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/d3-random": "^3.0.3",
"@types/google.maps": "^3.58.1",
"@types/jest": "^29.5.14",
"@types/proj4": "^2.5.5",
"@types/selenium-webdriver": "^4.1.25",
"@types/stats.js": "^0.17.3",
"@types/three": "^0.156.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.19.1",
"core-js": "^3.37.1",
"d3-random": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.1.3",
"geckodriver": "^5.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-webgl-canvas-mock": "^2.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rollup": "^4.22.4",
"selenium-webdriver": "^4.23.0",
"three": "^0.161.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}