forked from nuxt-modules/strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.1 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
{
"name": "@nuxtjs/strapi",
"version": "1.8.1",
"description": "Strapi module for Nuxt",
"repository": "nuxt-modules/strapi",
"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",
"prepare": "nuxi prepare example",
"release": "yarn lint && standard-version && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.2.3",
"defu": "^6.1.2",
"graphql": "^16.6.0",
"qs": "^6.11.0",
"ufo": "^1.1.1"
},
"devDependencies": {
"@nuxt/devtools": "^0.2.5",
"@nuxt/module-builder": "^0.2.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18.14.6",
"@types/qs": "^6.9.7",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"nuxt": "^3.2.3",
"standard-version": "^9.5.0"
},
"publishConfig": {
"access": "public"
}
}