-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.93 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
{
"name": "expense-action",
"author": "Christian Bromann <mail@bromann.dev>",
"description": "A GitHub Action that enables WebdriverIO TSC members to grant expense requests for contributed PRs to the project.",
"version": "1.4.0",
"license": "MIT",
"homepage": "https://github.com/webdriverio/expense-action",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/expense-action.git"
},
"bugs": {
"url": "https://github.com/webdriverio/expense-action/issues"
},
"keywords": [
"actions",
"webdriverio",
"expense"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write **/*.{ts,tsx}",
"format:check": "prettier --check **/*.{ts,tsx}",
"lint": "eslint .",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"sandbox": "cd sandbox && vite",
"test": "vitest -c vitest.config.ts --run",
"typecheck": "tsc --noEmit",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@octokit/rest": "^22.0.1",
"@react-email/components": "^1.0.6",
"@react-email/tailwind": "^2.0.3",
"@types/react": "^19.2.10",
"jsonwebtoken": "^9.0.3",
"react": "^19.2.4",
"resend": "^6.9.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.1.0",
"@types/react-dom": "^19.2.3",
"@vercel/ncc": "^0.38.4",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"@wdio/eslint": "^0.1.3",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"react-dom": "^19.2.4",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.28.2"
}