forked from fratzinger/feathers-pinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 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
{
"name": "@artesa/feathers-pinia",
"version": "2.0.0-pre.10",
"files": [
"dist",
"src"
],
"main": "./dist/feathers-pinia.umd.js",
"module": "./dist/feathers-pinia.mjs",
"exports": {
".": {
"import": "./dist/feathers-pinia.mjs",
"require": "./dist/feathers-pinia.umd.js"
}
},
"types": "dist/",
"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/",
"build": "vite build",
"build:viz": "npx vite-bundle-visualizer",
"test": "vitest run",
"coverage": "vitest run --coverage",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm run build && npm version prerelease --preid pre && npm publish --tag pre",
"release:patch": "npm run build && npm version patch && npm publish",
"release:minor": "npm run build && npm version minor && npm publish",
"release:major": "npm run build && npm version major && npm publish",
"format": "prettier -w .",
"lint": "eslint --ext .js,.ts,.vue --fix --ignore-path .gitignore ."
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.15",
"@feathersjs/commons": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"bson-objectid": "^2.0.3",
"fast-copy": "^3.0.0",
"fast-deep-equal": "^3.1.3",
"fast-json-stable-stringify": "^2.1.0",
"isomorphic-mongo-objectid": "^1.0.9",
"just-debounce": "^1.1.0",
"sift": "^16.0.0",
"vue-demi": "latest"
},
"optionalDependencies": {
"@feathersjs/rest-client": "5.0.0-pre.28"
},
"devDependencies": {
"@feathersjs/authentication-client": "^4.5.15",
"@feathersjs/rest-client": "^4.5.15",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-typescript": "^11.0.2",
"axios": "^1.1.3",
"c8": "^7.12.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.6.0",
"feathers-memory": "^4.1.0",
"pinia": "^2.0.23",
"prettier": "^2.7.1",
"typescript": "4.8.4",
"vite": "^3.1.8",
"vite-plugin-dts": "^1.6.6",
"vitepress": "^1.0.0-alpha.22",
"vitest": "^0.24.3",
"vue": "^3.2.41"
},
"peerDependencies": {
"@vue/composition-api": "^1.4.0",
"pinia": "^2.0.0",
"vue": "^2.6.14 || ^3.2.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}