-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "pi-patcher",
"version": "1.1.0",
"description": "Update-resilient self-healing patches for pi installs.",
"author": {
"name": "Bassim Shahidy",
"email": "bassim@shahidy.com",
"url": "https://bassim.sh"
},
"type": "module",
"bin": {
"pi-patcher": "dist/cli.js"
},
"scripts": {
"dev": "bun run src/cli.ts",
"changeset": "changeset",
"typecheck": "tsc --noEmit",
"test": "bun run build && bun test",
"build": "tsc --noEmit && bun build src/cli.ts --target=node --outfile=dist/cli.js && chmod +x dist/cli.js",
"ci:publish": "bun run build && changeset publish",
"prepack": "bun run build"
},
"files": [
"dist",
"prompts",
"patches",
"README.md",
"LICENSE"
],
"keywords": [
"pi",
"patch",
"patcher",
"self-healing",
"ai",
"agent",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AVGVSTVS96/pi-patcher.git"
},
"bugs": {
"url": "https://github.com/AVGVSTVS96/pi-patcher/issues"
},
"homepage": "https://github.com/AVGVSTVS96/pi-patcher#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.9",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^22.0.0",
"changesets-changelog-clean": "^1.4.0",
"typescript": "^5.5.0"
},
"license": "MIT"
}