-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 KB
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
{
"name": "pinia-jsonapi",
"version": "7.2.0",
"description": "Access restructured JSONAPI data from a Pinia Store.",
"author": "Matthew Richardson <M.Richardson@ed.ac.uk>",
"scripts": {
"dev": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vite dev\"",
"docs": "rm -rf docs/; jsdoc -c jsdoc.json",
"e2e": "playwright test --project 'Google Chrome'",
"fakeapiserver": "node examples/fake-json-api-server.js",
"lint": "eslint .",
"unit": "vitest run --dir tests/unit"
},
"main": "src/pinia-jsonapi.js",
"files": [
"src/"
],
"dependencies": {
"jsonpath-plus": "^10.3.0",
"lodash": "^4.17.21",
"pinia": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@pinia/testing": "^1.0.0",
"@playwright/test": "^1.51.1",
"@vitejs/plugin-vue": "^5.2.3",
"axios": "^1.8.4",
"axios-mock-adapter": "^2.1.0",
"chai": "^5.2.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^10.0.0",
"eslint-webpack-plugin": "^5.0.0",
"fake-json-api-server": "^1.7.0",
"globals": "^16.0.0",
"happy-dom": "^17.4.4",
"jsdoc": "^4.0.4",
"prettier": "^3.5.3",
"sinon": "^20.0.0",
"sinon-chai": "^4.0.0",
"vite": "^6.2.3",
"vitest": "^3.0.9",
"vue": "^3.5.13",
"vue-eslint-parser": "^10.1.1"
},
"peerDependencies": {
"vue": "^3.3.8"
},
"bugs": {
"url": "https://github.com/mrichar1/pinia-jsonapi/issues"
},
"homepage": "https://github.com/mrichar1/pinia-jsonapi.git",
"keywords": [
"vue",
"vuex",
"pinia",
"jsonapi",
"rest",
"normalize",
"jsonpath"
],
"license": "AGPL-3.0-or-later",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mrichar1/pinia-jsonapi.git"
}
}