-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "social-gateway-action",
"private": true,
"type": "module",
"scripts": {
"build": "ncc build src/index.ts --minify",
"dev": "npm run test:watch",
"lint": "eslint src/**/*.ts",
"test": "vitest --run",
"test:watch": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@dotenvx/dotenvx": "^1.6.4",
"@eslint/js": "^9.8.0",
"@types/fs-extra": "^11.0.4",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"husky": "^9.1.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"vitest": "^2.0.5"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@tsev/social-gateway": "^2.0.0",
"@vercel/ncc": "^0.38.1",
"date-fns": "^3.6.0",
"devalue": "^5.0.0",
"fs-extra": "^11.2.0",
"zod": "^3.23.8"
}
}