-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.1 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.1 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
{
"name": "light-process",
"version": "0.2.1",
"description": "Lightweight workflow engine with Docker container isolation and A2A protocol support.",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"light-process": "dist/cli.js",
"light": "dist/cli.js"
},
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js serve",
"link": "npm run build && npm link",
"test": "node --test test/unit/*.test.js",
"test:integration": "node --test test/integration/*.test.js",
"test:all": "node --test test/unit/*.test.js test/integration/*.test.js",
"test:e2e": "node test/e2e-adversarial/run.mjs",
"lint": "npx biome check src/ test/",
"lint:fix": "npx biome check --write src/ test/",
"build:check": "tsc --noEmit",
"version:alpha": "npm version prerelease --preid=alpha --no-git-tag-version",
"version:beta": "npm version prerelease --preid=beta --no-git-tag-version",
"version:rc": "npm version prerelease --preid=rc --no-git-tag-version",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"prepare": "node -e \"try{require('child_process').execSync('bash scripts/install-hooks.sh',{stdio:'ignore'})}catch{}\"",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"workflow",
"dag",
"docker",
"a2a",
"orchestration",
"container"
],
"author": "enixcode",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/enixCode/light-process.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.13",
"ajv": "^8.18.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md"
]
}