-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
58
59
60
{
"name": "infinite-minesweeper",
"version": "0.3.0",
"description": "An infinite, open source, minesweeper implementation. Perfect for creating bots, and based on borbit's mienfield.com",
"scripts": {
"dev": "vite --open",
"check": "bun i && eslint --ext .js,.jsx,.ts,.tsx ./src --fix && prettier --write . && bun ci && vite preview --open",
"ci": "bun i --production && tsc --noemit && prettier --check . && bun test && vite build",
"test": "vitest",
"test-single": "uvu -r tsm",
"test-watch": "watchlist -e src -- bun run test-single",
"type-watch": "tsc --noEmit --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zikoat/infinite-minesweeper.git"
},
"keywords": [
"mines",
"minesweeper",
"infinite",
"minefield"
],
"author": "Sigurd Schoeler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zikoat/infinite-minesweeper/issues"
},
"homepage": "https://github.com/Zikoat/infinite-minesweeper#readme",
"dependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/d3-zoom": "^3.0.8",
"@types/node": "^18.0.3",
"@types/node-localstorage": "^1.3.0",
"@types/react": "^18.0.15",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"bun-types": "^0.1.2",
"class-transformer": "^0.5.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"fast-check": "^3.0.1",
"gsap": "^3.6.0",
"node-localstorage": "^2.2.1",
"pixi.js": "^8.2.6",
"prettier": "^3.0.2",
"reflect-metadata": "^0.1.13",
"seedrandom": "^3.0.5",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vite": "^4.4.9",
"vitest": "^0.34.2",
"watchlist": "^0.3.1",
"zod": "^3.23.8"
}
}