-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 KB
/
package.json
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
{
"name": "cesr-ts",
"version": "1.0.0",
"description": "Implement TypeScript-native CESR primitives.",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"test": "node --test --require ts-node/register **/*.test.ts",
"formatting": "prettier . --check",
"lint": "eslint --ext .ts .",
"fix-lint": "eslint --ext .ts . --fix",
"fix-formatting": "prettier . --write",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebOfTrust/cesr-ts.git"
},
"keywords": [
"keri",
"cesr",
"weboftrust"
],
"author": "Jonathan Rayback",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WebOfTrust/cesr-ts/issues"
},
"homepage": "https://github.com/WebOfTrust/cesr-ts#readme",
"devDependencies": {
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"depcheck": "^1.4.7",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"buffer": "^6.0.3",
"libsodium-wrappers-sumo": "^0.7.13"
}
}