-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.4 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
{
"name": "@amap/three-layer",
"version": "0.0.5",
"description": "高德地图amap的threejs图层插件",
"keywords": [
"amap",
"threejs",
"高德地图",
"threejs图层"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"packageManager": "pnpm@7.9.4",
"workspaces": [
"src/*"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "npm run clean:dist && cross-env NODE_ENV=production rollup -c rollup.config.js",
"dev": "npm run clean:dist && cross-env NODE_ENV=development rollup -c rollup.config.js -w",
"clean:dist": "rimraf dist",
"lint": "eslint --fix --ext .js,.vue src/",
"prettier": "prettier --write src/",
"prepublishOnly": "npm run build"
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all"
],
"repository": "https://github.com/AMap-Web/amap-three",
"author": "guyangyang <407042815@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AMap-Web/amap-three/issues"
},
"homepage": "https://github.com/AMap-Web/amap-three",
"dependencies": {
"@amap/amap-jsapi-types": "^0.0.8",
"@types/three": "0.143.0",
"three": "0.143.0"
},
"devDependencies": {
"@pnpm/logger": "4.0.0",
"@pnpm/types": "8.5.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "4.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"cross-env": "^7.0.3",
"esbuild": "^0.15.5",
"eslint": "8.22.0",
"eslint-config-prettier": "8.3.0",
"eslint-define-config": "1.6.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "^4.2.1",
"fast-glob": "3.2.7",
"fs-extra": "10.0.0",
"gulp": "4.0.2",
"lint-staged": "^12.4.0",
"magic-string": "^0.25.7",
"prettier": "^2.7.1",
"rimraf": "3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-esbuild": "4.9.3",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.1",
"typescript": "^4.7.4"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
]
}