/ package.json
package.json
 1  {
 2  	"name": "cabbages",
 3  	"version": "0.0.0",
 4  	"description": "secret patch utility",
 5  	"main": "output/cabbages.js",
 6  	"types": "output/cabbages.d.ts",
 7  	"type": "module",
 8  	"keywords": ["diff", "patch", "pojo", "automerge", "braid"],
 9  	"scripts": {
10  		"test": "node --import=tsx cabbages.test.ts",
11  		"mk": "tsup cabbages.ts --format esm --dts -d output",
12  		"w": "pnpm mk --watch"
13  	},
14  	"author": "chee",
15  	"license": "GPL-3.0+",
16  	"devDependencies": {
17  		"@automerge/automerge": "^2.2.5",
18  		"@automerge/automerge-repo": "^1.2.1",
19  		"@types/node": "^20.14.11",
20  		"tsup": "^8.2.2",
21  		"tsx": "^4.16.2",
22  		"typescript": "^5.5.3"
23  	}
24  }