forked from marshallswain/feathers-pinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.07 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
93
94
95
96
97
98
99
{
"name": "feathers-pinia",
"version": "0.34.0",
"files": [
"dist",
"src"
],
"main": "./dist/feathers-pinia.umd.js",
"module": "./dist/feathers-pinia.es.js",
"exports": {
".": {
"import": "./dist/feathers-pinia.es.js",
"require": "./dist/feathers-pinia.umd.js"
}
},
"types": "src/",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs; npm run docs:copy-assets",
"docs:serve": "vitepress serve docs --port 5001",
"docs:copy-assets": "cp ./docs/feathers-pinia.png ./docs/.vitepress/dist/",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"prepare": "npm run test && npm run build",
"serve": "vite preview",
"test": "vitest run",
"coverage": "vitest run --coverage",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"spell-check": "cspell-cli '{src,docs,tests,example}/**/*'",
"format": "prettier -w .",
"lint": "eslint --ext .js,.ts,.vue --fix --ignore-path .gitignore .",
"sfl": "npm run spell-check && npm run format && npm run lint"
},
"dependencies": {
"@feathersjs/adapter-commons": "5.0.0-pre.18",
"@feathersjs/commons": "5.0.0-pre.18",
"@feathersjs/feathers": "5.0.0-pre.18",
"@types/lz-string": "^1.3.34",
"bson-objectid": "^2.0.3",
"events": "^3.3.0",
"fast-copy": "^2.1.3",
"fast-json-stable-stringify": "^2.1.0",
"just-debounce": "^1.1.0",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"sift": "^16.0.0",
"vue-demi": "latest"
},
"devDependencies": {
"@babel/types": "^7.18.2",
"@cspell/dict-fr-fr": "^2.1.0",
"@feathersjs/authentication-client": "5.0.0-pre.18",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/rest-client": "5.0.0-pre.18",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.36",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/compiler-sfc": "^3.2.36",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"c8": "^7.11.3",
"cspell-cli": "^6.0.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.0.1",
"feathers-memory": "^4.1.0",
"path": "^0.12.7",
"pinia": "^2.0.14",
"postcss-nested": "^5.0.6",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"tailwindcss": "^3.0.24",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vitepress": "^0.22.4",
"vitest": "^0.12.9",
"vue": "^3.2.36",
"vue-tsc": "^0.35.0"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"pinia": "^2.0.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}