diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2024-11-24 22:36:37 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2024-11-24 22:36:37 +0100 |
commit | 902a07087c2808c77943b9617a2ab063b1c260e9 (patch) | |
tree | 0d11c373a0da7ab35d23df0d881f8eeeb1d14322 /package.json | |
parent | 1b0d1a568e4224f6f3ff927e06997b9152e86ddf (diff) | |
download | land-and-freedom-902a07087c2808c77943b9617a2ab063b1c260e9.tar.gz |
initial setup
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 14 |
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 +} |