-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
49
50
51
52
53
{
"name": "mochimo-wots-v2",
"version": "0.1.0",
"description": "TypeScript implementation of Mochimo WOTS v2",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "vite build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagleanuj/mochimo-wots-v2.git"
},
"keywords": [
"cryptocurrency",
"cryptography",
"wots",
"one-time-signature",
"typescript",
"mochimo"
],
"author": "Anuj Wagle",
"license": "MIT",
"bugs": {
"url": "https://github.com/wagleanuj/mochimo-wots-v2/issues"
},
"homepage": "https://github.com/wagleanuj/mochimo-wots-v2#readme",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.5.0",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.4.0"
},
"dependencies": {
"crypto-js": "^4.2.0"
}
}