-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "@mentra/cli",
"version": "1.0.3",
"description": "Mentra CLI - Command-line tool for managing Mentra apps and organizations",
"type": "module",
"bin": {
"mentra": "./src/index.ts"
},
"main": "./src/index.ts",
"module": "./src/index.ts",
"files": [
"src",
"package.json"
],
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test"
},
"keywords": [
"mentra",
"cli",
"smart-glasses",
"augmented-reality"
],
"author": "Mentra",
"license": "MIT",
"dependencies": {
"@mentra/types": "1.0.0-beta.2",
"commander": "^11.1.0",
"axios": "1.14.0",
"jsonwebtoken": "^9.0.2",
"cli-table3": "^0.6.3",
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.11.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/inquirer": "^9.0.7",
"typescript": "^5.3.3",
"bun-types": "latest"
},
"engines": {
"bun": ">=1.3.0"
}
}