forked from WebOfTrust/signify-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
60
61
62
63
64
65
66
67
68
{
"name": "signify-ts",
"version": "0.3.0-rc1",
"description": "Signing at the edge for KERI, ACDC, and KERIA",
"keywords": [
"keri",
"acdc",
"keria",
"signify",
"signify-ts",
"decentralized identity",
"authentic data",
"zero trust architecture"
],
"author": "Phil Feairheller",
"homepage": "https://github.com/WebOfTrust/signify-ts",
"repo": {
"type": "git",
"url": "git+https://github.com/WebOfTrust/signify-ts.git"
},
"bugs": {
"url": "https://github.com/WebOfTrust/signify-ts/issues"
},
"license": "Apache-2.0",
"exports": {
"import": "./dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"start": "npm run build -- --watch",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.json --noEmit",
"test": "vitest",
"prepare": "tsc -p tsconfig.build.json",
"test:integration": "vitest -c vitest.integration.ts",
"lint": "eslint src test test-integration",
"generate-docs": "typedoc src/index.ts",
"pretty": "prettier --write .",
"pretty:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/node": "^22.13.11",
"@vitest/coverage-v8": "^3.0.9",
"bip39": "^3.1.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"minami": "^1.2.3",
"prettier": "^3.5.3",
"ts-mockito": "^2.6.1",
"typedoc": "^0.28.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
},
"dependencies": {
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.3.2",
"base64-js": "^1.5.1",
"libsodium-wrappers-sumo": "^0.7.9",
"mathjs": "^12.4.0",
"structured-headers": "^0.5.0"
}
}