-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "lab-os",
"version": "0.3.2",
"description": "Canonical GitHub seed for AI-native engineering lab scaffolding, governance, and validation workflows.",
"private": false,
"type": "module",
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JasonCheroske/Lab-OS.git"
},
"bugs": {
"url": "https://github.com/JasonCheroske/Lab-OS/issues"
},
"homepage": "https://github.com/JasonCheroske/Lab-OS#readme",
"keywords": [
"seed-repo",
"ai-engineering",
"governance",
"scaffolding",
"validation"
],
"bin": {
"lab-os": "bin/lab-os.mjs"
},
"files": [
"bin",
"schema",
"template",
"scripts",
"docs",
"examples",
"tests",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"init": "node scripts/init-lab.mjs",
"create": "node scripts/create-lab.mjs",
"validate": "node scripts/validate-lab.mjs",
"promote": "node scripts/promote-stage.mjs",
"test": "node --test tests/*.test.mjs",
"lab:init": "node scripts/lab-init.mjs",
"lab:verify": "node scripts/lab-verify.mjs",
"docs:check-links": "node scripts/check-doc-links.mjs",
"docs:check-frontmatter": "node scripts/add-md-frontmatter.mjs --check",
"lab:tar": "node scripts/build-lab-tar.mjs"
},
"dependencies": {
"ajv": "latest",
"yaml": "latest"
}
}