forked from paulirish/lite-youtube-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "@rinart73/lite-youtube-embed",
"version": "0.4.1",
"description": "A faster youtube embed.",
"license": "Apache-2.0",
"main": "./dist/lite-yt-embed.js",
"types": "./dist/lite-yt-embed.d.ts",
"style": "./dist/lite-yt-embed.css",
"repository": {
"type": "git",
"url": "git+https://github.com/rinart73/lite-youtube-embed.git"
},
"keywords": [
"youtube",
"custom element",
"web component"
],
"author": "Paul Irish",
"bugs": {
"url": "https://github.com/rinart73/lite-youtube-embed/issues"
},
"homepage": "https://github.com/rinart73/lite-youtube-embed#readme",
"readme": "readme.md",
"files": [
"dist/**",
"src/**",
"package.json",
"package-lock.json",
"readme.md"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/youtube": "^0.0.47",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cssnano": "^6.0.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"globby": "^13.1.4",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"uglify-js": "^3.17.4"
},
"scripts": {
"cleanup": "node ./scripts/cleanup.mjs",
"css": "node ./scripts/process-css.mjs",
"js": "node ./scripts/process-js.mjs",
"build": "npm run cleanup && tsc && npm run css && npm run js",
"lint": "eslint --ext .ts ./src"
}
}