-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bashdungeon",
"description": "A game for learning Bash (Bourne-Again SHell)",
"version": "1.0.0",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production --color 2>&1 | ./scripts/format-build-output.sh",
"build:analyze": "ANALYZE=true webpack --mode production --color 2>&1 | ./scripts/format-build-output.sh",
"clean": "rm -rf dist node_modules/.cache",
"serve": "npm run build && serve dist -l 9000",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0",
"prettier --write --ignore-unknown"
],
"*.{json,md,yml,yaml,css,html}": "prettier --write --ignore-unknown"
},
"sideEffects": false,
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"modern-normalize": "^2.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^25.0.3",
"@types/webpack-env": "^1.18.8",
"@types/xterm": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"esbuild-loader": "^4.4.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-webpack-plugin": "^5.0.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mini-css-extract-plugin": "^2.9.4",
"prettier": "^3.7.4",
"serve": "^14.2.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.16",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.92.1",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jake158/bashdungeon.git"
},
"author": "jake158",
"license": "GPL3",
"bugs": {
"url": "https://github.com/jake158/bashdungeon/issues"
},
"homepage": "https://github.com/jake158/bashdungeon#readme"
}