summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json14
1 files changed, 9 insertions, 5 deletions
diff --git a/package.json b/package.json
index 613747e..b63e15d 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,19 @@
{
"name": "land-and-freedom",
"version": "1.0.0",
- "description": "",
+ "description": "Land and Freedom for RTT",
"main": "rules.js",
"scripts": {
"build:scss": "sass --no-source-map land-and-freedom.scss land-and-freedom.css",
- "watch:scss": "sass --no-source-map --watch land-and-freedom.scss land-and-freedom.css"
+ "build:ts": "tsc",
+ "watch:scss": "sass --no-source-map --watch land-and-freedom.scss land-and-freedom.css",
+ "watch:ts": "tsc --watch",
+ "build": "npm run build:ts && npm run build:scss"
},
- "author": "",
+ "author": "Frans Bongers",
"license": "ISC",
"devDependencies": {
- "sass": "^1.81.0"
+ "sass": "^1.81.0",
+ "typescript": "^5.7.2"
}
-} \ No newline at end of file
+}