-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.2 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
{
"name": "@nuxtify/cms",
"version": "0.1.2",
"description": "Nuxtify CMS module powered by Nuxt.",
"homepage": "https://nuxtify.dev",
"author": "Nuxtify.dev <hello@nuxtify.dev>",
"funding": "https://github.com/sponsors/davidstackio",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxtify-dev/cms"
},
"bugs": {
"url": "https://github.com/nuxtify-dev/cms/issues"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"workspaces": [
"playground"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release:prepare": "npm run lint && npm run test && npm run prepack && changelogen --bump --noAuthors",
"release:publish": "npm run release:prepare && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test:coverage": "vitest --coverage",
"test:nuxt": "vitest --project nuxt"
},
"dependencies": {
"@nuxt/content": "^3.14.0",
"@nuxt/kit": "^4.4.6",
"@nuxtify/pages": "^0.7.1",
"@nuxtjs/seo": "^5.1.3",
"better-sqlite3": "^12.10.0",
"defu": "^6.1.7"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.4",
"@nuxt/eslint": "^1.15.2",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.6",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "latest",
"@vitest/coverage-v8": "^4.1.7",
"@vue/test-utils": "^2.4.10",
"changelogen": "^0.6.2",
"eslint": "^10.4.0",
"happy-dom": "^20.9.0",
"nuxt": "^4.4.6",
"typescript": "~6.0.3",
"vitest": "^4.1.7",
"vue-tsc": "^3.3.1"
}
}