-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 822 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
{
"name": "loop-engineering-crash-course",
"version": "0.1.0",
"private": true,
"description": "The Loop Engineering Crash Course. The installable CLI is packages/loop-kit — this root package is never published.",
"type": "module",
"license": "MIT",
"bin": {
"loop-kit": "packages/loop-kit/bin/loop-kit.mjs"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayeshakhalid192007-dev/LoopEngineering-CrashCourse.git"
},
"scripts": {
"validate:registry": "node scripts/validate-registry.mjs",
"audit:loops": "node scripts/loop-ready-audit.mjs",
"render:terminal": "node scripts/render-loop-ready-terminal.mjs",
"bundle:kit": "node packages/loop-kit/scripts/bundle-kits.mjs"
}
}