generated from dev-protocol/clubs-plugin-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.55 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
{
"name": "@devprotocol/clubs-plugin-web3auth",
"version": "0.1.2",
"type": "module",
"description": "Clubs plugin for integrating web3auth as a wallet provider.",
"main": "dist/index.js",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist/*.d.ts",
"dist/*.js",
"!**/*.test.*",
"src"
],
"keywords": [
"clubs-plugin"
],
"scripts": {
"test": "ava || echo 'skip'",
"preview": "astro --root .preview/preview.static dev",
"build": "rollup -c",
"pretest": "yarn build",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,tsx,jsx,astro,vue,svelte,json,md,yml}'",
"prepack": "yarn test && yarn build",
"prepare": "husky install",
"typecheck": "astro check && tsc --noEmit && svelte-check && vue-tsc --noEmit --p tsconfig.vue.json"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"@devprotocol/dev-kit": "8.6.0",
"@devprotocol/util-ts": "4.0.0",
"@wagmi/core": "^1.4.7",
"@web3auth/base": "^7.1.0",
"@web3auth/modal": "^7.1.1",
"bignumber.js": "9.1.2",
"ramda": "0.29.1",
"type-fest": "^4.7.1"
},
"peerDependencies": {
"@devprotocol/clubs-core": "^2.1.1",
"ethers": "^6.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/svelte": "^4.0.3",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/vue": "^3.0.0",
"@ava/typescript": "4.1.0",
"@devprotocol/clubs-core": "2.3.3",
"@devprotocol/elements": "^1.1.0",
"@rollup/plugin-typescript": "11.1.5",
"@tailwindcss/typography": "^0.5.10",
"@types/dotenv": "8.2.0",
"@types/node": "20.9.0",
"@types/ramda": "0.29.9",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"astro": "^3.0.12",
"ava": "5.3.1",
"dotenv": "16.3.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-functional": "6.0.0",
"ethers": "6.8.1",
"husky": "8.0.3",
"prettier": "3.1.0",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-svelte": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.4.1",
"rollup-plugin-dts": "^6.1.0",
"rxjs": "^7.8.1",
"sass": "1.69.5",
"svelte": "^4.2.3",
"svelte-check": "^3.6.0",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"vue": "3.3.8",
"vue-tsc": "^1.8.22"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
}
}