-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.12 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
{
"name": "react-github-snake",
"version": "1.1.0",
"description": "An interactive GitHub contribution snake game for React with automated pathfinding.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/index.css"
},
"publishConfig": {
"access": "public"
},
"files": ["dist", "README.md", "LICENSE"],
"sideEffects": ["*.css"],
"scripts": {
"dev": "vite",
"build": "bun run check && bun run typecheck && tsup",
"build:demo": "vite build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"check": "biome check --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist dist-demo node_modules bun.lock package-lock.json yarn.lock pnpm-lock.yaml coverage && bun install",
"prepublishOnly": "bun run clean && bun run build && bun run test:run"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.1.4",
"happy-dom": "^20.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18"
},
"keywords": [
"react",
"github",
"heatmap",
"snake",
"contribution",
"zero-dependency",
"interactive",
"game",
"component"
],
"author": "akashtdev",
"license": "MIT",
"homepage": "https://github.com/akashtdev/react-github-snake#readme",
"bugs": {
"url": "https://github.com/akashtdev/react-github-snake/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashtdev/react-github-snake.git"
}
}