@codejongos/workplace-packager 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +142 -0
- package/dist/index.mjs +374 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codejongos/workplace-packager",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Build and run the Moodle Workplace demo image from your own Moodle source tree.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"moodle",
|
|
7
|
+
"moodle-workplace",
|
|
8
|
+
"docker",
|
|
9
|
+
"cli",
|
|
10
|
+
"tui"
|
|
11
|
+
],
|
|
12
|
+
"license": "GPL-3.0-or-later",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=20.11.0"
|
|
16
|
+
},
|
|
17
|
+
"bin": {
|
|
18
|
+
"workplace-packager": "dist/index.mjs"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup",
|
|
29
|
+
"dev": "tsup --watch",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"test:watch": "vitest",
|
|
33
|
+
"size": "node scripts/size.mjs",
|
|
34
|
+
"prepublishOnly": "npm run build && npm run size",
|
|
35
|
+
"release:dry": "npm publish --dry-run"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@inkjs/ui": "^2.0.0",
|
|
39
|
+
"@types/node": "^22.10.2",
|
|
40
|
+
"@types/react": "^19.0.0",
|
|
41
|
+
"commander": "^13.1.0",
|
|
42
|
+
"execa": "^9.5.2",
|
|
43
|
+
"ink": "^7.1.1",
|
|
44
|
+
"ink-gradient": "^4.0.1",
|
|
45
|
+
"react": "^19.2.0",
|
|
46
|
+
"tsup": "^8.3.5",
|
|
47
|
+
"typescript": "^5.7.2",
|
|
48
|
+
"vitest": "^2.1.8"
|
|
49
|
+
}
|
|
50
|
+
}
|