mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-03 05:32:32 +00:00
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "sheettemplate",
|
|
"version": "2.0.0",
|
|
"description": "Character sheet development in VS Code",
|
|
"main": "index.js",
|
|
"devDependencies": {
|
|
"@types/underscore": "^1.10.24",
|
|
"jstransformer-uglify-es": "^0.2.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"pug": "^3.0.3",
|
|
"pug-cli": "^1.0.0-alpha6",
|
|
"sass": "^1.32.8",
|
|
"typescript": "^4.1.5"
|
|
},
|
|
"dependencies": {
|
|
"jq": "^1.7.2"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsc && run-p --race \"build:ts -- -w\" \"build:pug -- -w\" \"build:sass -- --watch\"",
|
|
"build": "tsc && run-p --race build:pug build:sass",
|
|
"build:ts": "tsc",
|
|
"build:pug": "pug -o . src/sheet.pug",
|
|
"build:sass": "sass --no-source-map --style compressed src/styles.scss ./styles.css"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/clevett/SheetTemplate.git"
|
|
},
|
|
"keywords": [
|
|
"Roll20"
|
|
],
|
|
"author": "Caden Levett",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/clevett/SheetTemplate/issues"
|
|
},
|
|
"homepage": "https://github.com/clevett/SheetTemplate#readme"
|
|
}
|