-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (55 loc) · 1.41 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
{
"name": "@storybook-vue/nuxt-storybook",
"version": "0.0.1-alpha.4",
"description": "Storybook module for Nuxt",
"license": "MIT",
"repository": "nuxt-modules/storybook",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"*.d.ts",
"*.cjs",
"*.mjs"
],
"scripts": {
"build": "pnpm build:module ",
"build:module": "nuxt-build-module",
"dev": "nuxi dev playground",
"typecheck": "nuxi typecheck",
"prepack": "pnpm build",
"prepare": "nuxi prepare playground"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.20",
"@nuxt/devtools": "0.8.0",
"@nuxt/devtools-ui-kit": "0.8.0",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.6.5",
"@nuxt/test-utils": "^3.6.5",
"eslint": "^8.46.0",
"nuxt": "^3.6.5",
"unbuild": "^1.2.1"
},
"dependencies": {
"@nuxt/devtools-kit": "latest",
"@nuxt/kit": "^3.6.5",
"typescript": "^4.5.4"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@nuxt/kit": "^3.6.5",
"typescript": "^5.2.2"
}
}
}