-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 839 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
33
34
35
36
37
38
39
{
"name": "@isaackd/annotationlib",
"version": "2.0.0",
"description": "YouTube annotation parser and renderer",
"keywords": [
"annotations",
"youtube"
],
"homepage": "https://github.com/isaackd/annotationlib#readme",
"bugs": {
"url": "https://github.com/isaackd/annotationlib/issues"
},
"license": "MIT",
"author": "isaackd",
"repository": {
"type": "git",
"url": "git+https://github.com/isaackd/annotationlib.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./index.css": "./dist/index.css"
},
"scripts": {
"build": "tsdown && cp \"src/renderer/index.css\" dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"tsdown": "^0.18.4",
"typescript": "^5.9.3"
}
}