-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "trunk-analytics-uploader",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "rm -rf dist && ncc build -m src/index.ts -o dist",
"clean": "rm -rf dist",
"local-action": "local-action . src/local-action.ts .env",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"dependencies": {
"@actions/cache": "^4.0.4",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"exponential-backoff": "^3.1.3",
"protobufjs": "^7.5.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@github/local-action": "^6.0.2",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"msw": "^2.12.7",
"ts-jest": "^29.2.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}