This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
81 lines (81 loc) · 2.37 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
{
"name": "@oarepo/vue-query-synchronizer",
"version": "3.0.3",
"private": false,
"license": "MIT",
"description": "Browser vue-router query synchronization library",
"scripts": {
"serve": "vue-cli-service serve",
"demo-build": "vue-cli-service build",
"build": "rimraf dist; bili -c bili.config.js src/library/index.ts --plugins.vue --format esm --file-name vue-query-synchronizer.esm.js && cpy README.md dist/ && json -e 'this.peerDependencies = this.dependencies; delete this.dependencies; delete this.scripts; delete this.devDependencies' <package.json >dist/package.json && cpy dist/library/*.d.ts dist && rimraf dist/library",
"doc": "node make_docs.ts",
"lint": "vue-cli-service lint"
},
"main": "vue-query-synchronizer.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/oarepo/vue-query-synchronizer.git"
},
"keywords": [
"vuejs",
"ui",
"oarepo",
"invenio",
"components",
"vue-router",
"query parameters"
],
"author": "Miroslav Simek <[email protected]>",
"bugs": {
"url": "https://github.com/oarepo/vue-query-synchronizer/issues"
},
"homepage": "https://github.com/oarepo/vue-query-synchronizer#readme",
"types": "index.d.ts",
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.1.0",
"bili": "^5.0.5",
"cpy-cli": "^3.1.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"json": "^11.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"typedoc": "^0.20.30",
"typescript": "^4.3.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}