-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.23 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
{
"name": "star-realms-authority",
"version": "1.1.0",
"description": "Star Realms Authority tracker",
"type": "module",
"main": "index.js",
"scripts": {
"build:ts": "node scripts/esbuild.js",
"build:html": "node scripts/html.js",
"build:sass": "sass src/scss/index.scss docs/index.css --style=compressed --load-path=src/scss/core",
"build": "npm run build:ts && npm run build:html && npm run build:sass",
"start:sass": "sass src/scss/index.scss docs/index.css --watch --load-path=src/scss/core",
"start:html": "node scripts/html.js -w",
"start:ts": "node scripts/esbuild.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronoDave/star-realms-authority.git"
},
"author": "Chronocide",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/chronoDave/star-realms-authority/issues"
},
"homepage": "https://github.com/chronoDave/star-realms-authority#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chokidar": "^3.5.3",
"esbuild": "^0.17.11",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"sass": "^1.59.2",
"typescript": "^4.9.5"
}
}