@phneakngar/cli 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +215 -0
- package/dist/index.js +26937 -0
- package/dist/meeting-runner.js +919 -0
- package/dist/session-runner.js +22009 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@phneakngar/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "ភ្នាក់ងារ CLI — install and run local AI agents on a client machine",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "ភ្នាក់ងារ",
|
|
7
|
+
"homepage": "https://phneakngar-web.thatsilenceguy.workers.dev",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/silence-guy/phneakngar.git",
|
|
11
|
+
"directory": "src/cli"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/silence-guy/phneakngar/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"phneakngar",
|
|
18
|
+
"cli",
|
|
19
|
+
"ai",
|
|
20
|
+
"agent",
|
|
21
|
+
"chhlat",
|
|
22
|
+
"email",
|
|
23
|
+
"local-agent"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"bin": {
|
|
27
|
+
"phneakngar": "dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=20.19.0"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"dev": "bun run src/index.ts",
|
|
46
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm --external citty --external commander --external postal-mime --external playwright-core --external sharp && bun build chhlat/session-runner.ts --outdir dist --target node --format esm --external citty --external commander --external postal-mime && bun build chhlat/meeting-runner.ts --outdir dist --target node --format esm --external playwright-core && node scripts/prepare-dist.mjs",
|
|
47
|
+
"prepack": "pnpm run build",
|
|
48
|
+
"pack:check": "npm pack --dry-run",
|
|
49
|
+
"knip": "knip",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"test:integration": "vitest run --config ../../tests/integration/cli/vitest.config.ts --passWithNoTests",
|
|
52
|
+
"lint": "eslint .",
|
|
53
|
+
"typecheck": "tsc --noEmit -p tsconfig.build.json"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"citty": "^0.2.2",
|
|
57
|
+
"commander": "^14.0.3",
|
|
58
|
+
"playwright-core": "^1.61.0",
|
|
59
|
+
"postal-mime": "^2.7.4",
|
|
60
|
+
"sharp": "^0.35.2"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@phneakngar/shared": "workspace:*",
|
|
64
|
+
"@types/bun": "^1.3.14",
|
|
65
|
+
"eslint": "^10.3.0",
|
|
66
|
+
"knip": "^6.17.1",
|
|
67
|
+
"typescript": "^6.0.3",
|
|
68
|
+
"typescript-eslint": "^8.61.1",
|
|
69
|
+
"vitest": "^4.1.9"
|
|
70
|
+
}
|
|
71
|
+
}
|