This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "moodle-openapi-server",
"version": "1.0.15",
"description": "Moddle OpenAPI server",
"private": true,
"type": "module",
"bin": {
"moodle-openapi-server": "./dist/server.bundle.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsgo && ts-add-js-extension --dir=dist && cp package.json dist/package.json",
"bundle": "bun build src/server.ts --outfile=dist/server.bundle.js",
"build:binary": "bun build src/server.ts --compile --outfile=dist/server",
"build:docker": "docker build --build-arg GITHUB_TOKEN=${GITHUB_TOKEN} -t moodle-openapi-server .",
"typecheck": "tsgo --noEmit",
"test": "bun test",
"dev": "bun --watch src/server.ts",
"start": "bun dist/server.bundle.js",
"prepare": "husky"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.52.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@toptiertools/moodle-client": "^1.0.15",
"@total-typescript/ts-reset": "^0.6.1",
"es-toolkit": "^1.44.0",
"hono": "^4.11.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.3.8",
"@types/node": "^20.19.31",
"@typescript/native-preview": "7.0.0-dev.20250606.1",
"esbuild": "^0.25.12",
"husky": "^9.1.7",
"openapi-types": "^12.1.3",
"ts-add-js-extension": "^1.6.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2",
"zx": "^8.8.5"
}
}