-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "maptalks.tileclip",
"version": "0.22.0",
"description": "",
"main": "./dist/maptalks.tileclip.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.js",
"tsc": "npx tsc --listFiles",
"dev": "npm run tsc && cross-env NODE_ENV=dev rollup -c -w",
"build": "npm run tsc && cross-env NODE_ENV=prd rollup -c"
},
"files": [
"dist",
"index.js",
"src"
],
"author": "deyihu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maptalks/maptalks.tileclip.git"
},
"bugs": {
"url": "https://github.com/maptalks/maptalks.tileclip/issues"
},
"homepage": "https://github.com/maptalks/maptalks.tileclip#readme",
"dependencies": {
"@maptalks/geojson-bbox": "^1.0.5",
"lineclip": "^1.1.5"
},
"devDependencies": {
"maptalks": "1.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"cross-env": "^5.1.4",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.7.2",
"tslib": "^2.8.1"
}
}