-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·109 lines (109 loc) · 2.77 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
{
"name": "nuxt-jsonapi",
"version": "2.0.3",
"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": "https://github.com/patrickcate/nuxt-jsonapi"
},
"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.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"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 install",
"commit": "cz",
"lint": "eslint --fix --ext .js,.cjs,.mjs,.ts,.vue .",
"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": {
"@nuxt/kit": "^3.0.0",
"colorette": "^2.0.19",
"defu": "^6.1.1",
"kitsu": "^10.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@nuxt/module-builder": "^0.5.1",
"@nuxt/schema": "^3.0.0",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-v8": "^0.34.4",
"commitizen": "^4.2.5",
"cz-customizable": "^7.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "^4.2.0",
"execa": "^8.0.1",
"fake-json-api-server": "^1.7.0",
"husky": "^8.0.2",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"nuxt": "^3.9.3",
"prettier": "^2.8.0",
"semantic-release": "^20.0.0",
"typescript": "^5.4.2",
"vitest": "^0.34.4"
},
"peerDependencies": {
"axios": "^0.27.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"
}
}
}