-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "@devframes/plugin-code-server",
"type": "module",
"version": "0.5.2",
"description": "Run code-server (VS Code in the browser) as a devframe panel — detect a local install, launch it on demand, and embed the editor in an auto-authenticated iframe.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/devframes/devframe#readme",
"repository": {
"directory": "plugins/code-server",
"type": "git",
"url": "git+https://github.com/devframes/devframe.git"
},
"bugs": "https://github.com/devframes/devframe/issues",
"keywords": [
"devframe",
"devframe-plugin",
"devtools",
"code-server",
"vscode"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./client": "./dist/client/index.mjs",
"./cli": "./dist/cli.mjs",
"./constants": "./dist/constants.mjs",
"./node": "./dist/node/index.mjs",
"./rpc": "./dist/rpc/index.mjs",
"./types": "./dist/types.mjs",
"./vite": "./dist/vite.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"devframe-code-server": "./bin.mjs"
},
"files": [
"bin.mjs",
"dist"
],
"scripts": {
"build": "tsdown && vite build --config src/spa/vite.config.ts",
"watch": "tsdown --watch",
"typecheck": "tsc --noEmit",
"dev": "vite --config src/spa/vite.config.ts --host 0.0.0.0",
"storybook": "storybook dev -p 6006 --host 0.0.0.0",
"build-storybook": "storybook build",
"test": "vitest run",
"prepack": "pnpm run build"
},
"peerDependencies": {
"devframe": "workspace:*",
"vite": "^8.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"dependencies": {
"get-port-please": "catalog:deps",
"nostics": "catalog:deps"
},
"devDependencies": {
"@storybook/html-vite": "catalog:storybook",
"@types/node": "catalog:types",
"devframe": "workspace:*",
"h3": "catalog:deps",
"storybook": "catalog:storybook",
"tsdown": "catalog:build",
"vite": "catalog:build",
"vitest": "catalog:testing",
"ws": "catalog:deps"
}
}