-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 826 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 826 Bytes
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
{
"name": "origin-workflow",
"version": "1.0.0",
"description": "Control-plane repository for automation, prompts, configs, and CI for Origin Byte integration",
"main": "scripts/webhook-server.js",
"scripts": {
"start": "node scripts/webhook-server.js",
"test": "./tests/bootstrap.test.sh && ./tests/capture.test.sh",
"bootstrap": "./scripts/bootstrap.sh",
"capture": "node scripts/capture.js",
"webhook": "node scripts/webhook-server.js"
},
"keywords": [
"workflow",
"productivity",
"knowledge-management",
"automation",
"capture"
],
"author": "Origin Workflow Builder",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"js-yaml": "^4.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "."
}
}