-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.08 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@stronk-tech/react-librespot-controller",
"description": "`go-librespot` squeezebox-alike web frontend for small touchscreens",
"version": "0.1.9",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"dependencies": {
"prop-types": "^15.8.1",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-scripts": "^5.0.1",
"rollup": "^4.28.1",
"rollup-plugin-import-css": "^3.5.7",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"start": "NODE_ENV=development rollup -c --watch",
"build": "NODE_ENV=production rollup -c",
"test": "react-scripts start",
"static": "react-scripts build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stronk-dev/react-librespot-controller.git"
},
"keywords": [
"spotify",
"react",
"web",
"player",
"tokyonight",
"tokyo",
"night",
"squeezebox"
],
"author": "Marco van Dijk",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/stronk-dev/react-librespot-controller/issues"
}
}