-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.34 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
{
"name": "fabula-ultima",
"version": "0.0.0",
"description": "Unofficial Roll20 Character Sheet for Fabula Ultima TTRPG",
"scripts": {
"dev": "run-p watch:*",
"build": "run-s compile:* lint",
"compile:tsc": "tsc",
"compile:sass": "npx sass ./src/scss/fabula-ultima.scss:fabula-ultima.raw.css --no-source-map --no-charset",
"compile:pug": "npx pug3 ./src/pug/fabula-ultima.pug --out ./ --pretty",
"compile:css": "npx postcss fabula-ultima.raw.css --output fabula-ultima.css --use autoprefixer --verbose --no-map",
"i18n": "i18ntool -i fabula-ultima.html -a > /dev/null",
"watch:tsc": "tsc --watch",
"watch:pug": "nodemon -e pug,js -x 'npm run compile:pug'",
"watch:i18n": "nodemon -e html -x 'npm run i18n'",
"watch:sass": "nodemon -e scss,sass -x 'npm run compile:sass'",
"watch:css": "nodemon -e css -x 'npm run compile:css'",
"lint": "npx prettier --write '**/*.*' -u --plugin '@prettier/plugin-pug'"
},
"keywords": [
"roll20"
],
"license": "MIT",
"devDependencies": {
"@anduh/pug-cli": "^1.0.0-alpha8",
"@prettier/plugin-pug": "^3.0.0",
"autoprefixer": "^10.4.19",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.4",
"pug": "^3.0.2",
"sass": "^1.70.0",
"typescript": "^5.3.3"
}
}