-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "chefu-academy-sdk",
"version": "1.0.10",
"description": "A TypeScript SDK and OpenAPI REST contract for the CheFu Academy platform",
"author": "Kurisani Maluleke",
"license": "MIT",
"homepage": "https://github.com/CheFu-code/CheFu-Academy-SDK#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CheFu-code/CheFu-Academy-SDK.git"
},
"bugs": {
"url": "https://github.com/CheFu-code/CheFu-Academy-SDK/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"chefu-academy": "bin/chefu-academy.cjs"
},
"files": [
"bin",
"clients",
"docs",
"examples",
"openapi",
"scripts",
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --clean",
"dev": "tsup src/index.ts --watch --dts --format esm,cjs",
"typecheck": "tsc --noEmit",
"postinstall": "node scripts/postinstall.cjs",
"prepare": "npm run build"
},
"keywords": [
"chefu",
"academy",
"sdk",
"typescript",
"openapi",
"rest-api",
"python",
"go",
"java",
"csharp",
"dotnet",
"php",
"ruby",
"curl",
"api-client",
"education"
],
"devDependencies": {
"@types/node": "^25.0.10",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/validator": "^13.15.10",
"axios": "^1.13.2",
"validator": "^13.15.26"
},
"engines": {
"node": ">=18"
}
}