forked from scio-labs/use-inkathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "@scio-labs/use-inkathon",
"author": "Scio Labs <[email protected]> (https://scio.xyz)",
"version": "0.0.1-alpha.42",
"description": "Typesafe React Hooks abstracting functionality by polkadot.js for working with Substrate-based networks and ink! Smart Contracts.",
"homepage": "https://inkathon.xyz",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/scio-labs/use-inkathon"
},
"bugs": {
"url": "https://github.com/scio-labs/use-inkathon/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16 <=18",
"pnpm": "8"
},
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "tsup && pnpm typedoc",
"typedoc": "typedoc src/index.ts --titleLink \"https://github.com/scio-labs/use-inkathon\"",
"dev": "tsup --watch",
"lint": "prettier . --check && pnpm eslint",
"lint:fix": "prettier . --write && pnpm eslint --fix",
"prepare": "husky install"
},
"peerDependencies": {
"@polkadot/api": ">=9.14.0",
"@polkadot/api-contract": ">=9.14.0",
"@polkadot/extension-inject": ">=0.44.0",
"@polkadot/types": ">=9.14.0",
"@polkadot/util": ">=10.4.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"release-it": "^15.10.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
}
}