-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
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
{
"name": "@pansy/lnglat-transform",
"type": "module",
"version": "1.0.3",
"packageManager": "[email protected]",
"description": "地图坐标系之间互相转换",
"author": "wangxingkang <https://github.com/wangxingkang>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pansyjs/lnglat-transform.git"
},
"keywords": [
"lnglat-transform",
"WGS-84",
"GCJ-02",
"BD-09"
],
"sideEffects": false,
"exports": {
".": {
"source": "./src/index.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"bootstrap": "pnpm install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "vite build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"preinstall": "npx only-allow pnpm",
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
"prepare": "husky || true"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"coordtransform": "^2.1.2",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"lnglat-transform": "^1.0.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.1.0",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix"
]
},
"publishConfig": {
"access": "public"
}
}