forked from nuxt-content/nuxt-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.25 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.25 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
{
"name": "nuxt-studio",
"version": "1.1.1",
"description": "Nuxt Studio for Nuxt Content",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-content/studio.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/module/module.mjs",
"./app": {
"types": "./dist/app/main.d.ts",
"default": "./dist/app/main.js"
},
"./app/utils": {
"types": "./dist/app/shared.d.ts",
"default": "./dist/app/shared.js"
},
"./app/service-worker": {
"types": "./dist/app/service-worker.d.ts",
"default": "./dist/app/service-worker.js"
}
},
"files": [
"dist"
],
"main": "./dist/module/module.mjs",
"scripts": {
"prepack": "nuxt-module-build build src/module; vite build src/app",
"dev": "pnpm run dev:prepare && STUDIO_DEV_SERVER=http://localhost:5151 nuxi dev playground/docus",
"dev:minimal": "pnpm run dev:prepare && STUDIO_DEV_SERVER=http://localhost:5151 nuxt dev playground/minimal",
"dev:app": "vite src/app --port 5151",
"dev:docs": "nuxt dev docs",
"dev:prepare": "nuxt-module-build build --stub src/module && nuxt-module-build prepare src/module && nuxi prepare playground/docus && nuxi prepare docs",
"build:docs": "nuxi build docs",
"build:dev": "nuxi build playground/docus",
"release": "release-it",
"lint": "eslint .",
"typecheck": "nuxt typecheck && vue-tsc -p src/app/tsconfig.app.json",
"verify": "pnpm run dev:prepare && pnpm run lint && pnpm run prepack && pnpm run typecheck && pnpm run test",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground/docus && vue-tsc --noEmit"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.86",
"@nuxtjs/mdc": "^0.20.0",
"@vueuse/core": "^14.1.0",
"defu": "^6.1.4",
"destr": "^2.0.5",
"js-yaml": "^4.1.1",
"minimatch": "^10.1.1",
"nuxt-component-meta": "^0.17.1",
"remark-mdc": "^3.10.0",
"shiki": "^3.21.0",
"unstorage": "1.17.4"
},
"devDependencies": {
"@gitbeaker/core": "^43.8.0",
"@iconify-json/simple-icons": "^1.2.67",
"@nuxt/content": "^3.11.0",
"@nuxt/eslint-config": "^1.12.1",
"@nuxt/kit": "^4.2.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/ui": "^4.3.0",
"@octokit/types": "^16.0.0",
"@release-it/conventional-changelog": "^10.0.4",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/extension-emoji": "^3.15.3",
"@types/js-yaml": "^4.0.9",
"@unhead/vue": "^2.1.2",
"@unpic/vue": "^1.0.0",
"@vitejs/plugin-vue": "^6.0.3",
"eslint": "^9.39.2",
"idb-keyval": "^6.2.2",
"minimark": "^0.2.0",
"modern-monaco": "^0.3.7",
"nuxt-studio": "workspace:*",
"ofetch": "^1.5.1",
"release-it": "^19.2.3",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-libcss": "^1.1.2",
"vitest": "^4.0.17",
"vue": "^3.5.27",
"vue-router": "^4.6.4",
"vue-tsc": "^3.2.2"
},
"resolutions": {
"@nuxtjs/mdc": "https://pkg.pr.new/@nuxtjs/mdc@f82fed2"
},
"packageManager": "pnpm@10.28.1",
"keywords": [
"nuxt",
"content",
"nuxt-module",
"studio",
"editor",
"preview",
"cms",
"markdown",
"mdc"
]
}