-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "grinders-farm",
"version": "0.3.3",
"description": "A pixel-art farm simulation game — plant, water, harvest, and sell crops",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/",
"assets/tiles/",
"docs/images/",
"src/notify/notify.json.example",
"README.md",
"SKILL.md",
"LICENSE"
],
"bin": {
"grinders-farm": "dist/src/adapters/terminal.js",
"grinders-farm-oneshot": "dist/src/adapters/oneshot.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/adapters/terminal.ts",
"daemon": "tsx src/adapters/daemon.ts",
"auto-worker": "tsx src/adapters/auto-worker.ts",
"generate-tiles": "tsx scripts/generate-tiles.ts",
"generate-demo-farm": "tsx scripts/generate-demo-farm-image.ts",
"start": "node dist/src/adapters/terminal.js",
"sync-skill": "node scripts/sync-skill.mjs",
"prepack": "npm run build"
},
"keywords": [
"farm",
"simulation",
"game",
"pixel-art",
"cli"
],
"license": "MIT",
"dependencies": {
"@napi-rs/canvas": "^0.1.97"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}