forked from nuxt-modules/strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.02 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
{
"name": "@nuxtjs/strapi",
"version": "1.4.0",
"description": "Strapi module for Nuxt",
"repository": "nuxt-community/strapi-module",
"license": "MIT",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev example",
"lint": "eslint --ext .js,.ts,.vue .",
"prepack": "yarn build",
"release": "yarn lint && standard-version && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.4",
"defu": "^6.0.0",
"graphql": "^16.5.0",
"pathe": "^0.3.0",
"qs": "^6.10.5"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/qs": "^6.9.7",
"eslint": "^8.17.0",
"husky": "^7.0.4",
"nuxt": "^3.0.0-rc.4",
"standard-version": "^9.3.2"
},
"publishConfig": {
"access": "public"
}
}