-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.83 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
{
"name": "@devframes/plugin-git",
"type": "module",
"version": "0.9.5",
"description": "Devframe plugin that shows a Git dashboard for status, log, branches, and diffs.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/devframes/devframe#readme",
"repository": {
"directory": "plugins/git",
"type": "git",
"url": "git+https://github.com/devframes/devframe.git"
},
"bugs": "https://github.com/devframes/devframe/issues",
"keywords": [
"devtools",
"devframe",
"git",
"dashboard",
"plugin"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"devframe-git": "./bin.mjs"
},
"files": [
"bin.mjs",
"dist"
],
"scripts": {
"build": "tsdown && pnpm run build:spa",
"build:spa": "next build src/client && node scripts/build-spa.mjs",
"cli:build": "node bin.mjs build --out-dir dist/static",
"dev": "node scripts/dev.mjs",
"dev:server": "node src/cli.ts",
"dev:client": "next dev src/client",
"storybook": "storybook dev -p 6011",
"storybook:build": "storybook build -o storybook-static",
"watch": "tsdown --watch",
"typecheck": "tsc --noEmit",
"prepack": "turbo run build --filter=@devframes/plugin-git",
"test": "vitest run"
},
"peerDependencies": {
"@devframes/plugin-git--assets": "workspace:*"
},
"peerDependenciesMeta": {
"@devframes/plugin-git--assets": {
"optional": true
}
},
"dependencies": {
"@devframes/service-git": "workspace:*",
"@devframes/service-shiki": "workspace:*",
"cac": "catalog:deps",
"devframe": "workspace:*",
"pathe": "catalog:deps"
},
"devDependencies": {
"@antfu/design": "catalog:frontend",
"@devframes/plugin-git--assets": "workspace:*",
"@floating-ui/react": "catalog:frontend",
"@iconify-json/catppuccin": "catalog:frontend",
"@radix-ui/react-scroll-area": "catalog:frontend",
"@radix-ui/react-slot": "catalog:frontend",
"@storybook/addon-a11y": "catalog:storybook",
"@storybook/addon-docs": "catalog:storybook",
"@storybook/react-vite": "catalog:storybook",
"@types/react": "catalog:types",
"@types/react-dom": "catalog:types",
"@unocss/postcss": "catalog:frontend",
"@vitejs/plugin-react-oxc": "catalog:storybook",
"clsx": "catalog:frontend",
"colorjs.io": "catalog:frontend",
"diff": "catalog:frontend",
"h3": "catalog:deps",
"next": "catalog:frontend",
"react": "catalog:frontend",
"react-dom": "catalog:frontend",
"shiki": "catalog:deps",
"storybook": "catalog:storybook",
"tailwind-merge": "catalog:frontend",
"tsdown": "catalog:build",
"unocss": "catalog:frontend",
"vitest": "catalog:testing",
"ws": "catalog:deps"
}
}