-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·99 lines (99 loc) · 4.31 KB
/
package.json
File metadata and controls
executable file
·99 lines (99 loc) · 4.31 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
{
"name": "nuxt-storybook",
"private": true,
"version": "",
"license": "MIT",
"repository": "nuxt-modules/storybook",
"author": {
"name": "ChakAs3",
"email": "javachakir@gmail.com"
},
"type": "module",
"scripts": {
"dev": "pnpm run --filter=./playground/** dev",
"dev:prepare": "pnpm run --recursive --filter=./packages/* --parallel dev:prepare && pnpm run --recursive --filter=./examples/** --parallel dev:prepare && pnpm run prepare",
"dev:build": "pnpm run --filter=./playground/** build",
"playground:storybook:dev": "pnpm run --filter=./playground/** storybook",
"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:dev": "pnpm run --filter=./examples/starter/** dev",
"example:starter:build": "pnpm run --filter=./examples/starter/** build",
"example:starter:storybook:build": "pnpm run --filter=./examples/starter/** build-storybook",
"example:starter:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:starter:storybook:build --project-token=chpt_dc04103f8a32bfa",
"example:tailwind:dev": "pnpm run --filter=./examples/tailwind/** dev",
"example:tailwind:build": "pnpm run --filter=./examples/tailwind/** build",
"example:tailwind:storybook:build": "pnpm run --filter=./examples/tailwind/** build-storybook",
"example:tailwind:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:tailwind:storybook:build --project-token=chpt_fbfe47dc27d4064",
"example:showcase:dev": "pnpm run --filter=./examples/showcase/** dev",
"example:showcase:build": "pnpm run --filter=./examples/showcase/** build",
"example:showcase:storybook:build": "pnpm run --filter=./examples/showcase/** build-storybook",
"example:showcase:storybook:publish": "chromatic --exit-zero-on-changes --build-script-name example:showcase:storybook:build --project-token=chpt_a53adf402cb628c",
"build": "pnpm run --recursive --filter=./packages/* build",
"package": "cd ./packages/storybook-addon && pnpm pack && cd ../nuxt-module && pnpm pack",
"lint": "pnpm lint:oxlint && pnpm lint:prettier",
"lint:oxlint": "oxlint .",
"lint:prettier": "prettier --check .",
"lint:fix": "pnpm lint:oxlint --fix && pnpm lint:prettier --write",
"release": "pnpm jiti prepare-release.ts && git push --follow-tags",
"release:major": "pnpm jiti prepare-release.ts --major && git push --follow-tags",
"nightly-release": "pnpm jiti prepare-release.ts --nightly && pnpm publish --recursive --tag nightly --access public --no-git-checks --provenance --report-summary",
"release-notes": "pnpm changelogithub",
"prepare": "pnpm run --filter=./playground/** prepare",
"docs:dev": "pnpm run --filter=./docs/** dev",
"docs:build": "pnpm run --filter=./docs/** build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage",
"test:playwright": "pnpm exec playwright test"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@nuxt/eslint-plugin": "1.15.2",
"@nuxt/test-utils": "4.0.0",
"@playwright/test": "1.59.1",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.2",
"@vue/test-utils": "2.4.6",
"changelogen": "0.6.2",
"changelogithub": "14.0.0",
"chromatic": "16.1.0",
"happy-dom": "20.8.9",
"jiti": "2.6.1",
"nuxt": "4.4.2",
"oxlint": "1.58.0",
"oxlint-tsgolint": "0.19.0",
"pathe": "2.0.3",
"pkg-pr-new": "0.0.66",
"prettier": "3.8.1",
"release-it": "19.2.4",
"semver": "7.7.4",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"publishConfig": {
"access": "public"
},
"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
},
"pnpm": {
"overrides": {
"h3": "1.15.11",
"h3-next": "npm:h3@1.15.11",
"@nuxtjs/storybook": "workspace:*"
}
}
}