-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.18 KB
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
{
"name": "@fe6/amap",
"version": "1.1.2",
"engines": {
"node": ">=16.10.0",
"pnpm": ">=8.10.0"
},
"packageManager": "pnpm@8.10.0",
"description": "Gaud components of vue3",
"scripts": {
"start": "vite",
"dts": "vue-tsc --declaration --emitDeclarationOnly ",
"move:dts": "node ./move-dts.js",
"build:lib": "vite build --config vite.config.lib.ts",
"build": "pnpm build:lib && pnpm dts && pnpm move:dts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress serve docs",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"lint": "pretty-quick --staged",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"gitcz": "git cz",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fe6/amap.git"
},
"keywords": [
"amap"
],
"author": "李梦龙",
"license": "MIT",
"bugs": {
"url": "https://github.com/fe6/amap/issues"
},
"homepage": "https://github.com/fe6/amap#readme",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@fe6/norm-git-cz-config/customizable.js"
}
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@fe6/norm-git-cz-config": "^0.1.1",
"@fe6/norm-prettier": "^0.1.0",
"@vitejs/plugin-vue": "^3.0.3",
"commitizen": "4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.9.1",
"husky": "^8.0.1",
"less": "^4.2.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.7.4",
"vite": "^3.0.7",
"vite-plugin-dts": "^1.4.1",
"vitepress": "^1.0.0-alpha.13",
"vue": "^3.2.37",
"vue-tsc": "^0.40.1"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@fe6/http": "^0.1.0",
"@fe6/icon-vue": "^1.2.2",
"@fe6/water-pro": "^4.23.2",
"axios": "^1.6.0"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/a-map.umd.cjs",
"module": "./dist/a-map.js",
"typings": "./dist/types/index.d.ts"
}