-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@othent/kms",
"version": "2.1.1",
"description": "Othent JS SDK to manage Arweave wallets backend by Auth0 and Google Key Management Service.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"Arweave",
"AO",
"Othent",
"Othent KMS",
"Wallet",
"Auth0",
"OAuth",
"Community Labs"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"clean": "rm -rf dist",
"nuke": "pnpm clean && rm -rf node_modules pnpm-lock.yaml",
"test": "echo \"Warning: no test specified\"",
"prettier": "prettier --write .",
"preversion": "pnpm test",
"version": "bash ./scripts/sync-version.sh && pnpm run build",
"postversion": "git push && git push --tags",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Othent/KeyManagementService.git"
},
"contributors": [
"Lorimer Jenkins <[email protected]> (http://lorimerjenkins.com/)",
"Daniel Gámez Franco <[email protected]> (https://gmzcodes.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Othent/KeyManagementService/issues"
},
"homepage": "https://othent.io",
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@google-cloud/kms": "^4.5.0",
"arweave-mnemonic-keys": "^0.0.9",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"extend": "^3.0.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"arweave": "^1.15.1",
"axios": "^1.7.4",
"warp-arbundles": "^1.0.4"
},
"devDependencies": {
"@types/extend": "^3.0.4",
"@types/node": "^22.5.0",
"arconnect": "^1.0.3",
"arweave": "^1.15.1",
"axios": "^1.7.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"warp-arbundles": "^1.0.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=20.17.0 <21 || >=22 <23 || >=24 <25",
"pnpm": ">=9.0.0"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"overrides": {
"human-crypto-keys/node-forge": "^1.3.1",
"human-crypto-keys/crypto-key-composer/node-forge": "^1.3.1"
}
}