-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
129 lines (129 loc) · 3.97 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "feathers-pinia",
"type": "module",
"version": "4.5.4",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/feathers-pinia.js"
},
"require": "./dist/feathers-pinia.umd.cjs"
},
"./ufuzzy": {
"import": "./dist/ufuzzy.js",
"require": "./dist/ufuzzy.cjs"
}
},
"main": "./dist/feathers-pinia.umd.cjs",
"module": "./dist/feathers-pinia.js",
"types": "dist/",
"files": [
"dist",
"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-bird.svg ./docs/.vitepress/dist/",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:viz": "npx vite-bundle-visualizer",
"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 run build && npm version prerelease && 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",
"spell-check": "cspell-cli '{src,docs,tests,example}/**/*'",
"format": "prettier -w .",
"lint": "eslint .",
"lint:fix": "eslint --fix src/ tests/ docs/",
"sfl": "npm run spell-check && npm run format && npm run lint"
},
"peerDependencies": {
"@feathersjs/adapter-commons": "^5.0.0",
"@feathersjs/commons": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@leeoniya/ufuzzy": "^1.0.14",
"@vue/composition-api": "^1.4.0",
"pinia": "^2.0.0",
"vue": "^2.6.14 || ^3.2.0"
},
"peerDependenciesMeta": {
"@leeoniya/ufuzzy": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"@types/lz-string": "^1.3.34",
"@vueuse/core": "^10.7.2",
"bson-objectid": "^2.0.4",
"events": "^3.3.0",
"fast-copy": "^3.0.1",
"fast-deep-equal": "^3.1.3",
"fast-json-stable-stringify": "^2.1.0",
"isomorphic-mongo-objectid": "^1.0.9",
"just-debounce": "^1.1.0",
"jwt-decode": "^4.0.0",
"lz-string": "^1.5.0",
"sift": "^17.0.1",
"vue-demi": "latest"
},
"optionalDependencies": {
"@feathersjs/rest-client": "5.0.21"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@babel/types": "^7.23.9",
"@cspell/dict-fr-fr": "^2.2.2",
"@faker-js/faker": "^8.4.1",
"@feathersjs/adapter-commons": "^5.0.21",
"@feathersjs/authentication-client": "^5.0.21",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/commons": "^5.0.21",
"@feathersjs/feathers": "^5.0.21",
"@feathersjs/memory": "^5.0.21",
"@feathersjs/rest-client": "^5.0.8",
"@feathersjs/typebox": "^5.0.21",
"@leeoniya/ufuzzy": "^1.0.14",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.17",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.18",
"@vue/eslint-config-typescript": "^12.0.0",
"autoprefixer": "^10.4.17",
"axios": "^1.6.7",
"c8": "^9.1.0",
"cspell-cli": "^8.3.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.21.1",
"flexsearch": "^0.7.43",
"markdown-it": "^14.0.0",
"path": "^0.12.7",
"pinia": "^2.1.7",
"postcss-nested": "^6.0.1",
"shx": "^0.3.4",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.3",
"vitepress": "^1.1.0",
"vitepress-plugin-search": "^1.0.4-alpha.22",
"vitest": "^1.5.0",
"vue": "^3.4.18",
"vue-tsc": "^1.8.27"
}
}