-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 966 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 966 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": "@midori-profile/overlay-video",
"version": "1.0.2",
"description": "A React component for high performance web animations",
"main": "lib/index.js",
"scripts": {
"build": "tsc && babel src --out-dir lib --extensions \".ts,.tsx\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"webgl",
"animation",
"transparent"
],
"author": "Midori<https://github.com/midori-profile>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.24.7",
"@types/react": "^18.3.3",
"@types/webgl2": "^0.0.11",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"lib",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
}
}