-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 3.72 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
{
"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": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/interledger/web-monetization-extension"
},
"scripts": {
"build": "tsx ./scripts/build.ts",
"dev": "tsx watch ./scripts/build.ts --dev",
"lint": "eslint . --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
"lint:fix": "eslint . --fix --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
"format": "prettier . --check --cache --cache-location='node_modules/.cache/prettiercache'",
"format:fix": "prettier . --write --cache --cache-location='node_modules/.cache/prettiercache' --log-level=warn",
"typecheck": "tsc --noEmit",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:chrome": "playwright test --project=chrome",
"test:e2e:msedge": "playwright test --project=msedge",
"test:e2e:report": "playwright show-report tests/e2e/playwright-report",
"test:ci": "pnpm test -- --reporters=default --reporters=github-actions"
},
"dependencies": {
"@interledger/open-payments": "^6.13.1",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.5.0",
"@radix-ui/react-tabs": "^1.1.1",
"awilix": "^11.0.0",
"class-variance-authority": "^0.7.0",
"crypto-browserify": "^3.12.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.7.0",
"http-message-signatures": "^1.0.4",
"httpbis-digest-headers": "^1.0.0",
"iso8601-duration": "^2.1.2",
"loglevel": "^1.9.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.26.2",
"safe-buffer": "5.2.1",
"tailwind-merge": "^2.5.2",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^4.0.1",
"@playwright/test": "^1.47.2",
"@tailwindcss/forms": "^0.5.9",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/archiver": "^6.0.2",
"@types/chrome": "^0.0.272",
"@types/github-script": "github:actions/github-script",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.9",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"esbuild-node-builtin": "^0.1.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-style-plugin": "^1.6.3",
"eslint": "^8.57.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sade": "^1.8.1",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"pnpm": "^9.10.0",
"npm": "pnpm",
"yarn": "pnpm",
"node": "^20.17.0"
},
"pnpm": {
"overrides": {
"safe-buffer": "5.2.1",
"string_decoder": "1.3.0",
"readable-stream": "2.3.8",
"bn.js": "5.2.1",
"structured-headers": "1.0.1"
}
},
"packageManager": "[email protected]"
}