-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.98 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.98 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "bingo-machine",
"version": "1.6.5",
"author": "ROhta",
"description": "A Bingo Machine for Party",
"private": false,
"license": "GPL-3.0-or-later",
"homepage": "https://rohta.github.io/bingo/",
"repository": {
"type": "git",
"url": "https://github.com/ROhta/bingo"
},
"bugs": {
"url": "https://github.com/ROhta/bingo/security/policy"
},
"main": "src/index.html",
"scripts": {
"dev": "pnpm run build && npm run serve",
"build": "pnpm exec tsc -b",
"watch": "pnpm exec tsc -b -w",
"clean": "pnpm exec tsc -b --clean",
"serve": "pnpm exec http-server -p 62800 -o src/index.html -s",
"prepare": "husky"
},
"engines": {
"node": ">=24.11.0",
"pnpm": ">=10.24.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/ts/*.ts": [
"pnpm exec eslint . --fix",
"pnpm exec prettier --write ."
]
},
"prettier": {
"printWidth": 1000,
"tabWidth": 2,
"useTabs": true,
"semi": false,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "avoid",
"rangeStart": 0,
"rangeEnd": 10000,
"filepath": "none",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "never",
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": true,
"endOfLine": "auto"
},
"eslintConfig": {
"root": true,
"env": {
"es2022": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2022,
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"ignorePatterns": [
"/node_modules/*",
"src/js/*"
]
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"eslint-config-prettier": "^10.1.8",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}