-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.63 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
{
"name": "vite-plugin-experimental-storybook-devtools",
"type": "module",
"version": "0.0.0",
"description": "A Vite plugin for visual component highlighting and automatic Storybook story generation.",
"author": "Yann Braga <yannbf@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/yannbf/vite-plugin-experimental-storybook-devtools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yannbf/vite-plugin-experimental-storybook-devtools.git"
},
"bugs": {
"url": "https://github.com/yannbf/vite-plugin-experimental-storybook-devtools/issues"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./react": {
"types": "./dist/frameworks/react/plugin.d.mts",
"default": "./dist/frameworks/react/plugin.mjs"
},
"./vue": {
"types": "./dist/frameworks/vue/plugin.d.mts",
"default": "./dist/frameworks/vue/plugin.mjs"
},
"./package.json": "./package.json",
"./client/overlay": "./dist/client/overlay.mjs",
"./client/listeners": "./dist/client/listeners.mjs",
"./client/vite-devtools": "./dist/client/vite-devtools.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown && pnpm build:panel",
"build:panel": "vite build --config vite.config.panel.ts",
"dev": "trap 'kill 0' EXIT; tsdown --watch & vite build --watch --config vite.config.panel.ts & wait",
"dev:panel": "vite build --watch --config vite.config.panel.ts",
"play": "vite",
"test": "vitest",
"e2e": "playwright test",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@babel/parser": "^7.28.6",
"@babel/traverse": "^7.28.6",
"@babel/types": "^7.28.6",
"@playwright/test": "^1.57.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.0.3",
"@vitejs/devtools": "^0.1.11",
"@vitejs/devtools-kit": "^0.1.11",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"@vue/compiler-sfc": "^3.5.28",
"bumpp": "^10.3.2",
"pkg-pr-new": "^0.0.66",
"playwright": "^1.57.0",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.2"
},
"dependencies": {
"@babel/generator": "^7.28.6",
"@medv/finder": "^3.1.0",
"@testing-library/dom": "^10.4.0",
"dom-accessibility-api": "^0.6.3",
"nanoevents": "^9.0.0",
"react-element-to-jsx-string": "^15.0.0"
}
}