-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "iina-plugin-user-scripts",
"version": "0.9.1",
"description": "",
"main": "src/index.js",
"scripts": {
"serve": "parcel serve src/standalone/index.html --dist-dir dist/standalone",
"build": "rm -rf dist && parcel build .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@parcel/transformer-sass": "^2.7.0",
"parcel": "^2.7.0",
"parcel-optimizer-webview": "git+https://github.com/iina/parcel-optimizer-webview.git",
"prettier": "^2.2.1",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.9",
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.7",
"@mui/icons-material": "^5.14.3",
"@mui/joy": "^5.0.0-beta.0",
"@uiw/codemirror-theme-xcode": "^4.21.9",
"@uiw/react-codemirror": "^4.21.9",
"iina-plugin-definition": "^0.0.8",
"webpack": "^5.59.1"
},
"entry": "src/index.js",
"globalEntry": "src/global.js",
"saWindow": "src/standalone/index.html",
"targets": {
"main": false,
"saWindow": {
"distDir": "./dist/standalone",
"publicUrl": "./",
"source": "src/standalone/index.html"
},
"entry": {
"distDir": "./dist/",
"source": "src/index.js",
"isLibrary": false
},
"globalEntry": {
"distDir": "./dist/",
"source": "src/global.js",
"isLibrary": false
}
},
"browserslist": "safari >= 9"
}