forked from enkryptcom/enKrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "@enkryptcom/utils",
"version": "0.0.3",
"description": "utility functions for enkrypt extension",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"lint": "prettier --write .",
"test": "ts-mocha -p tsconfig.json tests/**/*.test.ts"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"@enkryptcom/types": "workspace:^",
"@ethereumjs/util": "^8.1.0",
"@polkadot/util-crypto": "^12.4.2",
"bip39": "^3.1.0",
"chai": "^4.3.8",
"ethereum-cryptography": "^1.2.0",
"web3-utils": "^1.10.2"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-module-resolver": "^1.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"typescript-eslint": "0.0.1-alpha.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/<FILL_IT>"
},
"keywords": [],
"author": "kvhnuke",
"license": "MIT"
}