This repository was archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-youtube-lite",
"version": "2.0.0",
"description": "",
"keywords": [
"youtube-lite",
"react youtube rembed",
"youtube embed"
],
"homepage": "https://github.com/danestves/react-youtube-lite#readme",
"bugs": {
"url": "https://github.com/danestves/react-youtube-lite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danestves/react-youtube-lite.git"
},
"license": "MIT",
"author": "Daniel Esteves <[email protected]> (https://danestves.com)",
"main": "dist/index.js",
"module": "dist/react-youtube-lite.mjs",
"source": "src/index.ts",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"files": [
"dist",
"types",
"README.md"
],
"scripts": {
"prebuild": "npm run clean",
"build": "NODE_ENV=production parcel build",
"clean": "rimraf .parcel-cache dist types",
"prepublish": "npm run build",
"size": "size-limit",
"prestart": "npm run clean",
"start": "parcel example/index.html",
"start:watch": "parcel watch",
"test": "jest"
},
"dependencies": {
"@radix-ui/react-aspect-ratio": "^0.1.4",
"@stitches/react": "^1.2.7",
"browser-monads-ts": "^1.2.5"
},
"devDependencies": {
"@parcel/packager-ts": "^2.3.2",
"@parcel/transformer-typescript-types": "^2.3.2",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^17.0.39",
"@types/youtube-player": "^5.5.5",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"size-limit": "^7.0.8",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"react": "^16 || ^17"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
},
{
"path": "dist/react-youtube-lite.mjs",
"limit": "10 KB"
}
]
}