-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
executable file
·114 lines (114 loc) · 3.84 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
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
109
110
111
112
113
114
{
"name": "@nuxtjs/storybook",
"version": "8.0.0",
"description": "Storybook module for Nuxt",
"license": "MIT",
"repository": "nuxt-modules/storybook",
"author": {
"name": "ChakAs3",
"email": "javachakir@gmail.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"dev:build": "nuxi build playground",
"playground:storybook:build": "cd playground && pnpm run build-storybook",
"playground:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name playground:storybook:build --project-token=chpt_d7cf5e98426e11e",
"example:starter:build": "nuxi build examples/starter",
"example:starter:storybook:build": "cd examples/starter && pnpm run build-storybook",
"example:starter:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:starter:storybook:build --project-token=chpt_dc04103f8a32bfa",
"example:tailwind:build": "nuxi build examples/tailwind",
"example:tailwind:storybook:build": "cd examples/tailwind && pnpm run build-storybook",
"example:tailwind:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:tailwind:storybook:build --project-token=chpt_fbfe47dc27d4064",
"example:showcase:build": "nuxi build examples/showcase",
"example:showcase:storybook:build": "cd examples/showcase && pnpm run build-storybook",
"example:showcase:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:showcase:storybook:build --project-token=chpt_a53adf402cb628c",
"build": "nuxt-module-build build",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:prettier": "prettier --check .",
"prepack": "pnpm build",
"release": "pnpm changelogen --release --push && pnpm publish",
"prepare": "nuxi prepare playground",
"build:docs": "(cd docs && nuxi build)",
"docs:generate": "nuxi generate docs",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage"
},
"packageManager": "pnpm@9.1.0",
"devDependencies": {
"@iconify-json/carbon": "^1.1.27",
"@nuxt/content": "^2.10.0",
"@nuxt/devtools": "^1.0.8",
"@nuxt/eslint-config": "^0.3.6",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.9.1",
"@nuxt/test-utils": "^3.9.0",
"@vitest/coverage-v8": "^1.5.0",
"changelogen": "^0.5.5",
"chromatic": "^11.3.0",
"eslint": "^9.0.0",
"jsdom": "^24.0.0",
"nuxt": "^3.11.2",
"prettier": "^3.2.5",
"release-it": "^17.2.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.2.0"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.0.8",
"@nuxt/kit": "^3.11.2",
"@storybook-vue/nuxt": "^0.2.6",
"chalk": "^5.0.0",
"consola": "^3.2.3",
"defu": "^6.1.4",
"get-port-please": "^3.1.2",
"storybook": "^8.0.6",
"ufo": "^1.5.3"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vue": "^3.2.45"
},
"ignoreMissing": [
"webpack",
"vue"
]
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"after:bump": "npx changelogen@latest --no-commit --no-tag --output --r $(node -p \"require('./package.json').version\")"
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}