-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.02 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
80
81
82
{
"name": "pi-tag",
"version": "0.2.1",
"description": "Lightweight Slack gateway for pi coding agent",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Crokily/pi-tag.git"
},
"homepage": "https://github.com/Crokily/pi-tag#readme",
"bugs": {
"url": "https://github.com/Crokily/pi-tag/issues"
},
"keywords": [
"slack",
"bot",
"pi",
"coding-agent",
"gateway",
"pi-package"
],
"type": "module",
"main": "./dist/index.js",
"bin": {
"pitag": "dist/cli/index.js",
"pi-tag": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
".env.example",
"manifest.yaml",
"LICENSE"
],
"engines": {
"node": ">=22.19.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc && node -e \"require('fs').chmodSync('dist/cli/index.js',0o755)\"",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"start": "node dist/cli/index.js start",
"dev": "tsx src/cli/index.ts start"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@slack/bolt": "^4.7.3",
"@slack/web-api": "^7.19.0",
"better-sqlite3": "^12.0.0",
"croner": "^10.0.1",
"dotenv": "^16.5.0",
"minimatch": "^10.0.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.80.6",
"@earendil-works/pi-coding-agent": "^0.80.6",
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.2"
}
}