-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
57
{
"name": "monaco-component",
"version": "0.1.0",
"description": "Monaco editor as web-component",
"type": "module",
"main": "dist/index-legacy.js",
"exports": {
".": "./dist/index.js"
},
"types": "types/monaco-component.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"manifest": "custom-elements-manifest analyze",
"dev": "concurrently \"pnpm manifest --watch\" \"storybook dev --port 6006\"",
"build": "concurrently \"tsc\" \"vite build -c vite.lib.config.ts\" \"pnpm run build:storybook\"",
"build:storybook": "pnpm run manifest && storybook build",
"publish": "gh-pages -d storybook-static",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"monaco",
"editor",
"web-component"
],
"author": "Uscreen <[email protected]> (https://www.uscreen.tv)",
"homepage": "https://uscreen-video.github.io/monaco-component",
"license": "MIT",
"dependencies": {
"lit": "^2.6.1",
"monaco-editor": "^0.34.1",
"monaco-themes": "^0.4.3",
"nanoid": "^4.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@storybook/addon-essentials": "^7.0.0-beta.47",
"@storybook/addon-links": "^7.0.0-beta.47",
"@storybook/blocks": "^7.0.0-beta.47",
"@storybook/web-components": "^7.0.0-beta.47",
"@storybook/web-components-vite": "^7.0.0-beta.47",
"@vitejs/plugin-legacy": "^3.0.1",
"cem-plugin-better-lit-types": "^0.2.0",
"concurrently": "^7.3.0",
"gh-pages": "^5.0.0",
"lit-html": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-license": "^3.0.1",
"storybook": "^7.0.0-beta.47",
"terser": "^5.16.1",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}