-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "pyright-action",
"version": "2.3.2",
"private": true,
"description": "GitHub Action for pyright",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jakebailey/pyright-action.git"
},
"author": "Jake Bailey",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "~2.1.1",
"@actions/tool-cache": "^2.0.1",
"@badrap/valita": "^0.4.2",
"@iarna/toml": "^2.2.5",
"jsonc-parser": "^3.3.1",
"semver": "^6.3.1",
"shell-quote": "^1.8.2",
"which": "^5.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.17.9",
"@types/semver": "^6.2.7",
"@types/shell-quote": "^1.7.5",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^2.1.8",
"dprint": "^0.47.6",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest-serializer-path": "^0.1.15",
"klona": "^2.0.6",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"overrides": {
"vite": {
"esbuild": "$esbuild"
}
},
"scripts": {
"prepare": "husky",
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node20 --main-fields=module,main --packages=bundle",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
},
"hooks": {
"before:init": "pnpm run test --run",
"after:git:release": "(git tag -d v2 && git push origin :refs/tags/v2) || true && git tag v2 && git push origin v2"
}
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}