forked from delphi-labs/shuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@delphi-labs/shuttle-react",
"version": "3.29.0",
"description": "Shuttle is open-source npm package designed to turn wallet connections into a plug-and-play Lego brick for Cosmos Dapps.",
"keywords": [
"dapp",
"blockchain",
"wallets",
"cosmos-sdk",
"cosmos",
"typescript",
"react"
],
"author": "Delphi Labs (delphi-labs)",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/delphi-labs/shuttle.git",
"directory": "packages/react"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs --dts",
"dev": "pnpm run build --watch",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepublishOnly": "pnpm run test && pnpm run lint"
},
"peerDependencies": {
"react": ">=18"
},
"dependencies": {
"@delphi-labs/shuttle": "workspace:*",
"tslib": "^2.6.0",
"tsup": "^7.1.0",
"use-local-storage-state": "^18.3.3",
"zustand": "^4.3.8"
},
"devDependencies": {
"@swc/core": "^1.3.68",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.2.1",
"jest-resolver-enhanced": "^1.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}