-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.62 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": "vue-composition-wrapper",
"description": "composition api wrapper for vue 2.x vue-router 3.x vuex 3.x",
"version": "3.4.0",
"type": "module",
"main": "./lib/vue-composition-wrapper.cjs",
"module": "./lib/vue-composition-wrapper.js",
"types": "lib/index.d.ts",
"author": {
"name": "elenh",
"email": "[email protected]"
},
"exports": {
".": {
"require": "./lib/vue-composition-wrapper.cjs",
"import": "./lib/vue-composition-wrapper.js",
"types": "./lib/index.d.ts"
}
},
"keywords": [
"vue",
"vue2",
"vue-composition-api",
"wrapper",
"helper",
"vuex",
"vue-router",
"useStore",
"useRouter",
"useRoute",
"useContext"
],
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yisibell/vue-composition-wrapper.git"
},
"homepage": "https://github.com/yisibell/vue-composition-wrapper/README.md",
"bugs": {
"url": "https://github.com/yisibell/vue-composition-wrapper/issues"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"release": "npm run build:lib && npm run build:type && changelogen --release && npm publish --access=public && git push --follow-tags",
"build:app": "cross-env BUILD_TYPE=app vite build",
"build:lib": "cross-env BUILD_TYPE=lib vite build",
"build:type": "rollup -c rollup.dts.config.js"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.10",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"changelogen": "^0.5.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^24.0.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"typescript": "~5.3.0",
"vite": "^5.0.11",
"vitest": "^1.2.2",
"vue": "^2.7.16",
"vue-router": "^3.6.5",
"vue-tsc": "^1.8.27",
"vuex": "^3.6.2"
},
"peerDependencies": {
"vue": "^2.7.14",
"vue-router": "^3.6.5"
}
}