-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.72 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
{
"name": "nuxt-bedtime",
"version": "0.11.1",
"description": "Nuxt module for creating component stories",
"repository": "timhanlon/bedtime",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs",
"require": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:custom": "nuxi dev playground-custom",
"dev:nuxt4": "nuxi dev playground-nuxt4",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.2.0",
"@vue/compiler-sfc": "^3.5.22",
"change-case": "^5.4.4",
"defu": "^6.1.4",
"nuxt-shiki": "^0.3.1",
"pathe": "^2.0.3",
"tailwind-variants": "^3.1.1"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.5",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.0",
"@nuxt/test-utils": "^3.20.1",
"@nuxt/ui": "^4.1.0",
"@types/node": "latest",
"changelogen": "^0.6.2",
"eslint": "^9.38.0",
"nuxt": "^4.2.0",
"playwright": "^1.56.1",
"typescript": "^5.9.3",
"vitest": "^4.0.3",
"vue-tsc": "3.1.2"
},
"packageManager": "pnpm@10.19.0"
}