-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.5 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
{
"name": "@nuxtjs/strapi",
"version": "2.1.1",
"description": "Strapi module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/strapi.git"
},
"homepage": "https://strapi.nuxtjs.org",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/module.mjs"
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/module.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare docs",
"docs": "docus dev docs",
"docs:build": "docus build docs",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"release": "pnpm lint && standard-version && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^4.0.0",
"defu": "^6.1.4",
"graphql": "^16.11.0",
"qs": "^6.14.0",
"ufo": "^1.6.1"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.2",
"@nuxt/eslint-config": "^1.5.2",
"@nuxt/module-builder": "^1.0.1",
"eslint": "^9.30.1",
"nuxt": "^4.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"vue-tsc": "^3.0.1"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/strapi": "workspace:*"
},
"packageManager": "pnpm@10.12.4"
}