-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1.4 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
{
"name": "foundryvtt-minimal-ui",
"version": "1.7.0",
"description": "Minimal UI allows customizing Foundry interface, by hiding, collapsing or resizing specific parts.",
"main": "minimalui.js",
"scripts": {
"copy": "cp ./module.json dist/ && cp ./THANKS.txt dist/ && cp ./CHANGELOG.md dist/ && cp ./LICENSE.md dist/ && cp ./README.md dist/ && cp -r ./lang dist/",
"copyWin": "copy module.json dist && copy THANKS.txt dist && copy CHANGELOG.md dist && copy LICENSE.md dist && copy README.md dist && xcopy /Y /I lang dist\\lang",
"build": "rollup --config ./rollup.config.js && npm run copy",
"buildWin": "rollup --config ./rollup.config.js && npm run copyWin",
"zip": "npm-build-zip --source=dist --destination=.",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saif-ellafi/foundryvtt-minimal-ui.git"
},
"keywords": [
"foundry",
"vtt",
"interface",
"ui",
"minimal"
],
"author": "JeansenVaars (Saif Ellafi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/issues"
},
"homepage": "https://github.com/saif-ellafi/foundryvtt-minimal-ui#readme",
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"rollup": "^2.45.2",
"rollup-plugin-css-porter": "^1.0.2"
},
"devDependencies": {
"npm-build-zip": "^1.0.3"
}
}