-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "@esmjs/geo",
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]",
"description": "中国地理信息(GeoJSON)",
"keywords": [
"@esmjs/geo",
"China GeoJSON",
"中国地理信息(GeoJSON)",
"GeoJSON"
],
"homepage": "https://github.com/esmjs/geo/tree/main#readme",
"bugs": {
"url": "https://github.com/esmjs/geo/issues"
},
"license": "MIT",
"author": "@esmjs",
"repository": {
"type": "git",
"url": "git+https://github.com/esmjs/geo.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/modules.d.ts",
"exports": {
".": {
"types": "./dist/modules.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rimraf dist && esno build && tsc",
"pub": "pub"
},
"devDependencies": {
"@pureadmin/release": "^1.0.0",
"@types/node": "^20.10.0",
"esbuild": "^0.19.8",
"esno": "^4.0.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
}
}