-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.58 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
{
"name": "@devframes/plugin-data-inspector",
"type": "module",
"version": "0.7.15",
"description": "Devframe plugin — inspect live server-side objects interactively with jora queries: registry-contributed data sources, saved queries, file and process-attach inspection.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/devframes/devframe#readme",
"repository": {
"directory": "plugins/data-inspector",
"type": "git",
"url": "git+https://github.com/devframes/devframe.git"
},
"bugs": "https://github.com/devframes/devframe/issues",
"keywords": [
"devframe",
"devframe-plugin",
"devtools",
"jora",
"data-inspector"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./client": "./dist/client/index.mjs",
"./inject": "./dist/inject/index.mjs",
"./cli": "./dist/cli.mjs",
"./engine": "./dist/engine/index.mjs",
"./node": "./dist/node/index.mjs",
"./registry": "./dist/registry/index.mjs",
"./vite": "./dist/vite.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"devframe-data-inspector": "./bin.mjs"
},
"files": [
"bin.mjs",
"dist"
],
"scripts": {
"build": "tsdown && vite build --config src/spa/vite.config.ts",
"dev": "vite --config src/spa/vite.config.ts",
"watch": "tsdown --watch",
"storybook": "storybook dev -p 6016",
"build-storybook": "storybook build",
"prepack": "pnpm build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"devframe": "workspace:*",
"vite": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"dependencies": {
"cac": "catalog:deps",
"get-port-please": "catalog:deps",
"jora": "catalog:deps",
"nostics": "catalog:deps"
},
"devDependencies": {
"@antfu/design": "catalog:frontend",
"@discoveryjs/discovery": "catalog:frontend",
"@iconify-json/ph": "catalog:frontend",
"@storybook/addon-docs": "catalog:storybook",
"@storybook/vue3-vite": "catalog:storybook",
"@types/codemirror": "catalog:types",
"@vitejs/plugin-vue": "catalog:build",
"devframe": "workspace:*",
"dompurify": "catalog:frontend",
"floating-vue": "catalog:frontend",
"reka-ui": "catalog:frontend",
"splitpanes": "catalog:frontend",
"storybook": "catalog:storybook",
"tsdown": "catalog:build",
"unocss": "catalog:frontend",
"vite": "catalog:build",
"vitest": "catalog:testing",
"vue": "catalog:frontend"
}
}