generated from dev-protocol/clubs-plugin-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.03 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": "@devprotocol/clubs-plugin-passports",
"version": "0.1.0-beta.42",
"type": "module",
"description": "Passports plugin for clubs",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*.d.ts",
"dist/*.js",
"./*.d.ts",
"!**/*.test.*",
"!dist/vitest.*",
"src"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components": {
"default": "./dist/components.js",
"types": "./components.d.ts"
},
"./utils": {
"default": "./dist/utils.js",
"types": "./utils.d.ts"
},
"./constants": {
"default": "./dist/constants.js",
"types": "./constants.d.ts"
},
"./types": {
"default": "./dist/types.js",
"types": "./types.d.ts"
},
"./package.json": "./package.json"
},
"keywords": [
"clubs-plugin"
],
"scripts": {
"test": "vitest",
"preview": "astro --root .preview/preview.ssr dev",
"preview:static": "astro --root .preview/preview.static dev",
"build": "rollup -c",
"prebuild": "rimraf dist ./*.d.ts",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --fix",
"lint:format": "prettier --write '**/*.{ts,js,tsx,jsx,astro,vue,svelte,json,md,yml}'",
"prepack": "yarn test --run && yarn prebuild && yarn build",
"prepare": "husky",
"typecheck": "astro check && tsc --noEmit && vue-tsc --noEmit --p tsconfig.vue.json"
},
"author": "Dev Protocol",
"license": "PolyForm Perimeter License 1.0.0",
"dependencies": {
"@devprotocol/dev-kit": "8.7.0",
"@devprotocol/util-ts": "4.0.0",
"bignumber.js": "9.1.2",
"dayjs": "^1.11.13",
"nanoid": "^5.0.7",
"ramda": "0.30.1",
"redis": "^4.7.0",
"sass": "1.83.0"
},
"peerDependencies": {
"@devprotocol/clubs-core": "^3.18.0",
"@devprotocol/clubs-plugin-payments": "^0.2.3 || ^0.3.0",
"ethers": "^6.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/svelte": "^6.0.0",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/vue": "^4.0.0",
"@devprotocol/clubs-core": "^3.22.1",
"@devprotocol/clubs-plugin-payments": "0.3.5",
"@eslint/js": "^9.14.0",
"@rollup/plugin-typescript": "12.1.2",
"@tailwindcss/typography": "^0.5.10",
"@types/dotenv": "8.2.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "22.10.2",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"astro": "^4.0.0",
"dotenv": "16.4.7",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-functional": "^7.1.0",
"ethers": "6.13.4",
"globals": "^15.12.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-svelte": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"rimraf": "6.0.1",
"rollup": "4.29.1",
"rollup-plugin-dts": "^6.1.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"typescript-eslint": "^8.13.0",
"vitest": "^2.0.0",
"vue": "3.5.13",
"vue-tsc": "^2.0.0"
},
"packageManager": "yarn@4.6.0"
}