-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "balatrolator",
"version": "1.0.1f",
"license": "MIT",
"description": "Balatrolator, a Balatro score calculator",
"author": {
"name": "Philipp Rudloff",
"url": "https://kleinfreund.de"
},
"homepage": "https://balatrolator.com",
"repository": {
"type": "git",
"url": "https://github.com/kleinfreund/balatrolator.git"
},
"bugs": {
"url": "https://github.com/kleinfreund/balatrolator/issues"
},
"type": "module",
"imports": {
"#*": "./src/*"
},
"scripts": {
"start": "vite",
"start:debug": "cross-env VITE_DEBUG=true npm run start",
"test": "vitest run",
"test:debug": "cross-env VITE_DEBUG=true npm run test",
"test:watch": "vitest watch",
"test:watch:debug": "cross-env VITE_DEBUG=true npm run test:watch",
"lint": "run-p lint:*",
"lint:code": "eslint",
"lint:lockfile": "lockfile-lint --path package-lock.json --validate-hosts --allowed-hosts npm",
"lint:types": "tsc --noEmit",
"fix": "run-p fix:*",
"fix:code": "npm run lint:code -- --fix",
"build": "vite build",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^2.1.8",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lockfile-lint": "^4.14.0",
"npm-run-all2": "^7.0.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}