-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "youtube-player",
"private": true,
"author": {
"name": "Bogdan Vatamanu",
"email": "vatamanu.bogdan41@gmail.com"
},
"license": "Apache-2.0",
"scripts": {
"build": "npm run build -w youtube-player-ts-api && npm run build -w youtube-player-react",
"lint": "npm run lint -w packages/",
"clean": "npm run clean -w packages/ && rimraf node_modules"
},
"workspaces": [
"example",
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.19.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}