-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 947 Bytes
/
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
{
"name": "@goto-bus-stop/yt",
"description": "A cheeky alternative YouTube Player API implementation",
"version": "0.1.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": "https://github.com/goto-bus-stop/yt/issues",
"dependencies": {
"@types/youtube": "0.1.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.18.0",
"standard": "^17.0.0",
"typescript": "^5.3.3"
},
"exports": {
".": "./index.js",
"./install": "./install.js",
"./dist": "./dist.js"
},
"homepage": "https://github.com/goto-bus-stop/yt",
"keywords": [
"embed",
"iframe",
"player",
"video",
"youtube"
],
"license": "Unlicense",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/goto-bus-stop/yt.git"
},
"scripts": {
"lint": "standard",
"prepare": "rollup -i install.js -p terser -o dist.js"
},
"type": "module"
}