-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
{
"name": "@mcovilo/thea-sdk",
"version": "0.11.2",
"description": "Thea SDK",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rm -rf dist & rollup -c",
"test": "jest --config test/jest-config.json --detectOpenHandles --passWithNoTests --forceExit",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prettier": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "husky install",
"docs": "typedoc --out docs --entryPointStrategy expand src/"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MVPWorkshop/thea-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MVPWorkshop/thea-sdk/issues"
},
"homepage": "https://github.com/MVPWorkshop/thea-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@types/uuid": "^9.0.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"rollup": "^3.7.5",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/strings": "^5.7.0",
"@ethersproject/wallet": "^5.7.0"
},
"dependencies": {
"axios": "^1.2.2",
"uuid": "^8.3.2"
}
}