-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1006 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "optio-teachable",
"version": "1.1.0",
"description": "A lightweight, strictly-typed Node.js wrapper for the Teachable v1 API. Built on [Zod](https://zod.dev) for runtime schema validation, with full TypeScript support out of the box.",
"keywords": [],
"license": "MIT",
"author": {
"name": "Tom Lorimer",
"url": "https://useoptio.com"
},
"homepage": "https://useoptio.dev",
"repository": {
"type": "git",
"url": "https://github.com/Ellf/optio-teachable.git"
},
"bugs": {
"url": "https://github.com/Ellf/optio-teachable/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@zod/core": "^0.11.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.5",
"dotenv": "^17.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}