-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.61 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
83
84
85
86
{
"name": "@probelabs/afk",
"version": "0.6.0",
"description": "Universal AI integration platform: Remote approval for any AI system via Telegram. Supports Python, Node.js, bash and more.",
"bin": {
"afk": "bin/afk"
},
"scripts": {
"test": "./test/run-tests.sh",
"test:all": "./test/run-tests.sh",
"test:working": "./test/run-tests.sh",
"test:core": "npm run test:permissions && npm run test:integration && npm run test:runtime && npm run test:syntax",
"test:features": "npm run test:diff && npm run test:session && npm run test:preview && npm run test:telegram",
"test:permissions": "node test/test-permissions.js",
"test:integration": "node test/test-integration.js",
"test:runtime": "node test/test-runtime.js",
"test:diff": "node test/test-diff-generation.js",
"test:session": "node test/test-session-management.js",
"test:preview": "node test/test-preview-diff.js",
"test:telegram": "node test/test-telegram-integration.js",
"test:hooks": "echo 'Hook integration tests are temporarily disabled due to 8 failing tests' && node test/test-hook-integration.js",
"test:hooks:force": "node test/test-hook-integration.js",
"test:syntax": "node -c bin/afk",
"test:quick": "npm run test:syntax && npm run test:permissions",
"test:ci": "./test/run-tests.sh",
"prepublishOnly": "npm test",
"version": "git add -A .",
"postversion": "git push && git push --tags",
"deploy:site": "cd site && npx wrangler pages deploy . --project-name=afk-site --commit-dirty=true",
"deploy:worker": "npx wrangler deploy"
},
"type": "commonjs",
"author": "Leonid Bugaev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/probelabs/afk.git"
},
"bugs": {
"url": "https://github.com/probelabs/afk/issues"
},
"homepage": "https://afk-site.pages.dev",
"keywords": [
"claude",
"claude-code",
"telegram",
"bot",
"remote-control",
"approval",
"afk",
"cli",
"ai-integration",
"universal-ai",
"python-ai",
"nodejs-ai",
"bash-integration",
"subprocess"
],
"files": [
"bin/**/*",
"lib/**/*",
"examples/**/*",
"scripts/**/*",
"test/**/*",
"generate-and-read-diff.js",
"send-final-version.js",
"README.md",
"INTEGRATION.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"diff2html": "^3.4.52",
"imagemin": "^9.0.1",
"imagemin-pngquant": "^10.0.0",
"pngquant": "^4.2.0",
"puppeteer-core": "^23.9.0",
"sharp": "^0.34.3"
}
}