-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@iserlabs/web-kit",
"version": "0.6.0",
"private": false,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"exports": {
"./biome": "./src/biome/biome.base.json",
"./tsconfig": "./src/tsconfig/tsconfig.base.json",
"./tsconfig-next": "./src/tsconfig/tsconfig-next.json",
"./tailwind": "./src/tailwind/contract.css",
"./seo": "./src/seo/index.ts",
"./schema": "./src/schema/index.ts",
"./network": "./src/network/index.ts",
"./proof": "./src/proof/index.ts",
"./forms": "./src/forms/index.ts",
"./env": "./src/env/index.ts",
"./utils": "./src/utils/index.ts",
"./audits": "./src/audits/index.mjs",
"./observability": "./src/observability/index.ts",
"./observability/env": "./src/observability/env.ts",
"./observability/server": "./src/observability/server.ts"
},
"bin": {
"web-kit": "./bin/web-kit.mjs"
},
"files": [
"src",
"bin",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ignore-script": "bash scripts/ci/vercel-ignore.test.sh",
"typecheck": "tsc --noEmit",
"lint": "biome check src bin",
"format": "biome format --write src bin"
},
"dependencies": {
"clsx": "^2.1.1",
"culori": "^4.0.2",
"fast-xml-parser": "^5.9.3",
"node-html-parser": "^8.0.3",
"tailwind-merge": "^3.0.0"
},
"peerDependencies": {
"@discordjs/rest": ">=2.4.0",
"discord-api-types": ">=0.37.100",
"zod": ">=3.23.0"
},
"peerDependenciesMeta": {
"@discordjs/rest": {
"optional": true
},
"discord-api-types": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@biomejs/biome": "^2.5.1",
"@discordjs/rest": "^2.4.0",
"@tailwindcss/cli": "^4.0.0",
"@types/node": "^26.0.0",
"chrome-launcher": "^1.2.1",
"discord-api-types": "^0.38.0",
"http-server": "^14.1.1",
"lighthouse": "^13.4.0",
"playwright": "^1.61.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0",
"zod": "^4.0.0"
}
}