-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 855 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 855 Bytes
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
{
"name": "whisper-transcript",
"description": "A web-component for viewing a Whisper JSON transcript",
"repository": "github:edsu/whisper-transcript",
"license": "MIT",
"author": "whisper-transcript",
"version": "0.1.1",
"type": "module",
"main": "index.js",
"module": "index.js",
"exports": {
".": "./index.js",
"./whisper-transcript.js": "./whisper-transcript.js"
},
"scripts": {
"analyze": "cem analyze --litelement",
"start": "web-dev-server",
"build": "rollup -c"
},
"dependencies": {
"lit": "^3.1.4"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@web/dev-server": "^0.4.6",
"koa-range": "^0.3.0",
"rollup": "^4.27.3"
},
"customElements": "custom-elements.json",
"packageManager": "yarn@4.12.0"
}