-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "@jujuleaf/worker",
"version": "0.1.2",
"description": "Dispatch Overleaf comment tasks from JujuLeaf to coding agents.",
"type": "module",
"bin": {
"jujuleaf-worker": "dist/src/cli.js"
},
"files": [
"dist/src/",
"schemas/",
"sop/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test dist/test/*.test.js",
"prepack": "npm run build"
},
"engines": {
"node": ">=22.13"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CsomePro/jujuleaf-worker.git"
},
"homepage": "https://github.com/CsomePro/jujuleaf-worker#readme",
"bugs": {
"url": "https://github.com/CsomePro/jujuleaf-worker/issues"
},
"keywords": [
"overleaf",
"jujuleaf",
"codex",
"kimi",
"agent",
"worker"
],
"author": "CsomePro",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.0"
}
}