This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.99 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "solid-algo-wallets",
"version": "0.1.7",
"description": "Integrate multiple Algorand wallets with a SolidJS web application client",
"license": "MIT",
"author": "Brian Whippo <dev@silentrhetoric.com>",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/SilentRhetoric/solid-algo-wallets.git"
},
"homepage": "https://github.com/SilentRhetoric/solid-algo-wallets#readme",
"bugs": {
"url": "https://github.com/SilentRhetoric/solid-algo-wallets/issues"
},
"keywords": [
"solidjs",
"algorand",
"wallet",
"pera",
"defly",
"myalgo",
"exodus",
"ledger",
"walletconnect",
"algokit",
"metamask"
],
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
},
"private": false,
"sideEffects": false,
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build",
"publishToNPM": "pnpm publish",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" --ignore-path .gitignore",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 \"src/**/*.{js,ts,tsx,jsx}\"",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li",
"dev": "pnpm -dir site run dev"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.11",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^23.2.0",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tsup": "^8.0.1",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-plugin-solid": "^2.8.2"
},
"peerDependencies": {
"solid-js": "^1.8.11"
},
"dependencies": {
"@blockshake/defly-connect": "^1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@ledgerhq/hw-app-algorand": "^6.28.1",
"@ledgerhq/hw-transport-webusb": "^6.28.1",
"@perawallet/connect": "^1.3.4",
"@randlabs/myalgo-connect": "^1.4.2",
"@solid-primitives/storage": "^2.1.2",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/modal-sign-html": "^2.6.2",
"@walletconnect/sign-client": "^2.11.0",
"algosdk": "2.7.0",
"buffer": "^6.0.3"
},
"browser": {},
"workspaces": [
".",
"site-build",
"site-dev"
]
}