-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.25 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "web-monetization-extension",
"description": "Web Monetization is a browser API that allows the creation of a payment stream from the user agent to the website.",
"private": true,
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/interledger/web-monetization-extension"
},
"scripts": {
"build": "node ./scripts/build.ts",
"dev": "node --watch ./scripts/build.ts --dev",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format && prettier . --check",
"format:fix": "biome format --write && prettier . --write --log-level=warn",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:report": "playwright show-report tests/e2e/playwright-report",
"test:ci": "jest --reporters=default --reporters=github-actions"
},
"dependencies": {
"@interledger/open-payments": "^7.4.0",
"@noble/ed25519": "^3.1.0",
"@noble/hashes": "^2.2.0",
"@radix-ui/react-tabs": "^1.1.13",
"awilix": "^13.0.3",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"http-message-signatures": "^1.0.4",
"httpbis-digest-headers": "^1.0.0",
"iso8601-duration": "^2.1.3",
"loglevel": "^1.9.2",
"posthog-js": "^1.368.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"safe-buffer": "5.2.1",
"tailwind-merge": "^2.6.1",
"valtio": "^2.3.1",
"webextension-polyfill": "^0.12.0",
"wouter": "^3.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@jgoz/esbuild-plugin-typecheck": "^4.0.4",
"@jgoz/jest-esbuild": "^1.0.10",
"@octokit/openapi-webhooks-types": "^12.1.0",
"@playwright/test": "^1.59.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/archiver": "^7.0.0",
"@types/chrome": "^0.1.40",
"@types/github-script": "github:actions/github-script#v8.0.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "^0.12.5",
"archiver": "^7.0.1",
"autoprefixer": "^10.5.0",
"esbuild": "^0.28.0",
"esbuild-node-builtin": "^0.1.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-style-plugin": "^1.6.3",
"jest": "^30.3.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^30.3.0",
"jest-expect-message": "^1.1.3",
"jest-transform-stub": "^2.0.0",
"jsdom": "27.3.0",
"postcss": "^8.5.9",
"prettier": "^3.8.2",
"react-scan": "^0.5.3",
"sade": "^1.8.1",
"tailwindcss": "^3.4.19",
"tinyspy": "^4.0.4",
"totp-generator": "2.0.1",
"typescript": "^6.0.3"
},
"engines": {
"pnpm": "^10.18.3",
"npm": "pnpm",
"yarn": "pnpm",
"node": "^24.13.0"
},
"pnpm": {
"overrides": {
"safe-buffer": "5.2.1",
"string_decoder": "1.3.0",
"readable-stream": "2.3.8",
"parse5": "7.3.0",
"structured-headers": "1.0.1"
}
},
"type": "module",
"packageManager": "pnpm@10.33.0"
}