-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·114 lines (114 loc) · 2.75 KB
/
package.json
File metadata and controls
executable file
·114 lines (114 loc) · 2.75 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
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
{
"name": "nuxt-jsonapi",
"version": "3.0.0",
"description": "Easy JSON:API client integration for Nuxt.js",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"vue",
"json",
"api",
"json:api"
],
"homepage": "https://github.com/patrickcate/nuxt-jsonapi",
"repository": {
"type": "git",
"url": "git+https://github.com/patrickcate/nuxt-jsonapi.git"
},
"bugs": {
"url": "https://github.com/patrickcate/nuxt-jsonapi/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Patrick Cate",
"url": "https://github.com/patrickcate"
}
],
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"build:module": "nuxt-module-build build",
"build:playground": "nuxi build playground",
"prepare": "husky",
"commit": "cz",
"lint": "eslint --fix",
"types": "tsc --noEmit",
"test:api-server": "node playground/server.mjs",
"test:vitest": "npx vitest run --coverage",
"test": "npm-run-all --parallel test:* -r",
"semantic-release": "semantic-release"
},
"dependencies": {
"colorette": "^2.0.19",
"defu": "^6.1.1",
"kitsu": "^11.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/kit": "^4.2.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.2",
"@nuxt/test-utils": "^3.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "^4.2.5",
"cz-customizable": "^7.0.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"fake-json-api-server": "^1.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"npm-run-all": "^4.1.5",
"nuxt": "^4.2.2",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"typescript": "^5.4.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"axios": "^1.11.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,vue}": [
"eslint"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
}
}