blob: b63e15dc12f92e46e66d17e4916eb114d6822992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"name": "land-and-freedom",
"version": "1.0.0",
"description": "Land and Freedom for RTT",
"main": "rules.js",
"scripts": {
"build:scss": "sass --no-source-map 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": "Frans Bongers",
"license": "ISC",
"devDependencies": {
"sass": "^1.81.0",
"typescript": "^5.7.2"
}
}
|