This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "@prosopo/contract",
"version": "0.1.10",
"author": "PROSOPO LIMITED <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --build --verbose",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./types": "./dist/types/index.js",
"./captcha": "./dist/captcha/index.js"
},
"typesVersions": {
"*": {
"types": [
"dist/types"
],
"captcha": [
"dist/captcha"
]
}
},
"dependencies": {
"@polkadot/api": "^8.13.1",
"@polkadot/api-contract": "^8.13.1",
"@polkadot/keyring": "^10.0.2",
"@polkadot/rpc-provider": "^8.13.1",
"@polkadot/types": "^8.13.1",
"@polkadot/types-create": "^8.13.1",
"@polkadot/util": "^10.0.2",
"@polkadot/util-crypto": "^10.0.2",
"@prosopo/datasets": "^0.1.10",
"@prosopo/i18n": "^0.1.10",
"bn.js": "^5.2.1",
"consola": "^2.15.3",
"zod": "^3.17.9"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prosopo/contract.git"
},
"bugs": {
"url": "https://github.com/prosopo/contract/issues"
},
"homepage": "https://github.com/prosopo/contract#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"description": ""
}