-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@talismn/siws",
"description": "Sign-In with Substrate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "jest --verbose --coverage",
"format": "prettier --write .",
"prepare": "husky install"
},
"author": "chrisling-dev",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-plugin-eslint-plugin": "^5.1.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"semantic-release": "^24.2.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"husky": "^8.0.0"
},
"peerDependencies": {
"@polkadot/api": "*",
"@polkadot/extension-dapp": "*"
},
"dependencies": {
"@azns/resolver-core": "^1.7.0",
"@types/jest": "^29.5.8",
"ethers": "^5.7.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalismanSociety/siws.git"
},
"bugs": {
"url": "https://github.com/TalismanSociety/siws/issues"
},
"homepage": "https://github.com/TalismanSociety/siws#readme"
}