forked from iina/plugin-online-media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 858 Bytes
/
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
{
"name": "iina-plugin-template-react",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "rm -rf dist && parcel build .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"iina-plugin-definition": "^0.0.7",
"parcel": "^2.6.0",
"prettier": "^2.6.2"
},
"entry": "src/index.js",
"targets": {
"main": false,
"entry": {
"distDir": "./dist/",
"source": "src/index.ts",
"isLibrary": false
},
"globalEntry": {
"distDir": "./dist/",
"source": "src/global.ts",
"isLibrary": false
},
"downloadsWindowEntry": {
"distDir": "./dist/",
"source": "src/downloads-window.js",
"isLibrary": false
}
},
"dependencies": {
"mustache": "^4.2.0"
}
}