-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 870 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 870 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
{
"name": "animo-cli",
"version": "0.1.0",
"description": "CLI for Canvas LMS student API",
"type": "module",
"bin": {
"animo": "./dist/index.js"
},
"scripts": {
"prebuild": "npm cache clean --force && npm install canvas-student-api@github:animo-li/canvas-student-api --force",
"build": "tsc",
"dev": "tsc --watch",
"lint": "tsc --noEmit",
"start": "node dist/server/index.js"
},
"keywords": [
"canvas",
"lms",
"cli",
"student"
],
"license": "MIT",
"dependencies": {
"canvas-student-api": "github:animo-li/canvas-student-api",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^17.3.1",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}