-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (32 loc) · 1011 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": "fount",
"version": "dev",
"description": "a programmable, standardised, modular, customisable agent framework.",
"author": "steve02081504",
"homepage": "https://steve02081504.github.io/fount",
"repository": {
"type": "git",
"url": "https://github.com/steve02081504/fount.git"
},
"bin": {
"fount": "path/fount.mjs"
},
"scripts": {
"run": "node path/fount.mjs run",
"init": "node path/fount.mjs init",
"debug": "node path/fount.mjs debug",
"shutdown": "node path/fount.mjs shutdown",
"reboot": "node path/fount.mjs reboot",
"clean": "node path/fount.mjs clean",
"update": "git pull --rebase origin master",
"geneexe": "node path/fount.mjs geneexe",
"remove": "node path/fount.mjs remove",
"nop": "node path/fount.mjs nop",
"log": "node path/fount.mjs log",
"start": "node path/fount.mjs",
"stop": "node path/fount.mjs shutdown",
"restart": "node path/fount.mjs reboot",
"dev": "node path/fount.mjs debug",
"uninstall": "node path/fount.mjs remove"
}
}