-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
92 lines (92 loc) · 2.82 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
91
92
{
"name": "vue3-naver-maps",
"description": "NaverMap component for Vue3",
"version": "4.2.0",
"license": "MIT",
"main": "dist/vue3-naver-maps.cjs.js",
"module": "dist/vue3-naver-maps.esm.js",
"types": "dist/vue3-naver-maps.d.ts",
"sideEffects": false,
"files": [
"dist/*.js",
"dist/vue3-naver-maps.d.ts",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.js && yarn build:dts",
"build:dts": "api-extractor run --local --verbose",
"dev": "vite dev ./playground",
"release": "bash scripts/release.sh",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:serve": "vuepress serve docs",
"docs:release": "bash scripts/docs-release.sh",
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"type-check": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/DongKyuuuu/vue3-naver-maps"
},
"author": {
"name": "Dongkyuuuu",
"email": "[email protected]"
},
"bug": {
"url": "https://github.com/Dongkyuuuu/vue3-naver-maps/issues",
"email": "[email protected]"
},
"peerDependencies": {
"vue": "^3"
},
"dependencies": {
"query-string": "^8.1.0"
},
"devDependencies": {
"@babel/types": "^7.19.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@microsoft/api-extractor": "^7.33.7",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rushstack/eslint-patch": "^1.1.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^6.6.1",
"@types/jest": "^29.2.4",
"@types/navermaps": "^3.6.1",
"@types/node": "^18.11.17",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.26.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"@vuepress/client": "next",
"@vuepress/plugin-container": "next",
"@vuepress/plugin-docsearch": "next",
"@vuepress/plugin-register-components": "next",
"@vuepress/utils": "^2.0.0-alpha.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.30.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.2",
"jsdom": "^20.0.3",
"prettier": "^2.7.1",
"rollup": "^2.77.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"standard-changelog": "^2.0.27",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2",
"vue": "^3.2.45",
"vue-router": "4",
"vue-tsc": "^1.0.16",
"vuepress": "next"
},
"packageManager": "[email protected]"
}