-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.45 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.45 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
{
"name": "finessimo",
"version": "0.1.0",
"description": "Tetris Finesse Trainer - Learn optimal piece placement techniques",
"main": "src/main.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "CI=true jest --maxWorkers=100%",
"test:ci": "CI=true jest --ci --maxWorkers=100%",
"test:coverage": "jest --coverage --maxWorkers=100%",
"coverage:snapshot": "npm run test:coverage && node scripts/update-coverage-thresholds.cjs",
"lint": "eslint_d src tests --ext .ts --fix --cache --max-warnings=0",
"lint:ci": "eslint src tests --ext .ts --fix --cache --max-warnings=0",
"lint:restart": "eslint_d restart",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"format": "prettier --write --log-level warn ./src/ ./tests/",
"check": "npm-run-all -s clean typecheck lint test:coverage format",
"ci": "npm-run-all -s clean typecheck lint:ci test:ci",
"assistants:build": "node scripts/build-assistants.cjs",
"assistants:validate": "node scripts/validate-assistants.cjs",
"generate:finesse-table": "jest --runInBand tests/scripts/generate-guided-finesse-table.test.ts",
"prepare": "husky"
},
"keywords": [
"tetris",
"finesse",
"training",
"game",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@chnicoloso/lit-jsx": "^0.0.2",
"@lit-labs/signals": "^0.1.3",
"lit": "^3.3.1",
"robot3": "^1.1.1",
"ts-fsrs": "^5.2.3"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@jest/globals": "^30.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.40.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.34.0",
"eslint_d": "^14.3.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-oxlint": "^1.14.0",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.5",
"handlebars": "^4.7.8",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"oxlint": "^1.14.0",
"prettier": "^3.6.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5"
}
}