-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "etherpad-webcomponents",
"version": "0.0.4",
"description": "Etherpad Web Components built with Lit",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./EpButton.js": "./dist/EpButton.js",
"./EpCard.js": "./dist/EpCard.js",
"./EpChatMessage.js": "./dist/EpChatMessage.js",
"./EpCheckbox.js": "./dist/EpCheckbox.js",
"./EpColorPicker.js": "./dist/EpColorPicker.js",
"./EpColorWheel.js": "./dist/EpColorWheel.js",
"./EpDropdown.js": "./dist/EpDropdown.js",
"./EpDropdownItem.js": "./dist/EpDropdownItem.js",
"./EpInput.js": "./dist/EpInput.js",
"./EpModal.js": "./dist/EpModal.js",
"./EpNotification.js": "./dist/EpNotification.js",
"./EpToast.js": "./dist/EpToast.js",
"./EpToolbarSelect.js": "./dist/EpToolbarSelect.js",
"./EpUserBadge.js": "./dist/EpUserBadge.js",
"./EpTheme.js": "./dist/EpTheme.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest --project storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ether/webcomponents.git"
},
"dependencies": {
"etherpad-webcomponents": "link:../../AppData/Local/pnpm/global/5/node_modules/etherpad-webcomponents"
},
"peerDependencies": {
"@lit/reactive-element": "^2.1.2",
"lit": "^3.3.2",
"lit-element": "^4.2.2",
"lit-html": "^3.3.2"
},
"devDependencies": {
"@storybook/addon-vitest": "^10.3.5",
"@storybook/web-components": "^10.3.5",
"@storybook/web-components-vite": "^10.3.5",
"@vitest/browser": "^4.1.3",
"@vitest/browser-playwright": "^4.1.3",
"@vitest/runner": "^4.1.3",
"playwright": "^1.59.1",
"storybook": "^10.3.5",
"typescript": "^6.0.2",
"vite": "^8.0.7",
"vitest": "^4.1.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"playwright"
],
"overrides": {
"etherpad-webcomponents": "link:../../AppData/Local/pnpm/global/5/node_modules/etherpad-webcomponents"
}
}
}