-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.29 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
{
"name": "@authmesh/cli",
"version": "0.7.0",
"description": "CLI for amesh — device identity management and pairing",
"type": "module",
"license": "MIT",
"author": "Yair Etzion",
"repository": {
"type": "git",
"url": "https://github.com/ameshdev/amesh.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/ameshdev/amesh",
"keywords": [
"authentication",
"cli",
"device-identity",
"secure-enclave",
"tpm",
"pairing"
],
"publishConfig": {
"access": "public"
},
"bin": {
"amesh": "./dist/index.js"
},
"oclif": {
"commands": "./dist/commands",
"bin": "amesh",
"topicSeparator": " "
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"test": "bun test src/__tests__/",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"clean": "rm -rf dist *.tsbuildinfo"
},
"dependencies": {
"@authmesh/core": "0.7.0",
"@authmesh/keystore": "0.7.0",
"@noble/ciphers": "2.1.1",
"@noble/curves": "2.0.1",
"@noble/hashes": "2.0.1",
"@oclif/core": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "^1.3.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
}
}