-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "glogos-protocol",
"version": "1.0.0",
"description": "Reference implementation of the Glogos minimal attestation protocol",
"private": true,
"type": "module",
"workspaces": [
"sdk/typescript/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint sdk/typescript/*/src --ext .ts",
"format": "prettier --write \"sdk/*/src/**/*.ts\"",
"ceremony": "npx tsx ceremony/witness.ts",
"ceremony:py": "python ceremony/witness.py"
},
"keywords": [
"glogos",
"attestation",
"decentralized-identity",
"did",
"w3c-ccg",
"verifiable-credentials",
"sha256",
"ed25519"
],
"author": "Le Manh Thanh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/glogos-org/glogos.git"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ajv": "^8.17.1",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"tsx": "^4.21.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}