forked from jakebailey/pyright-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.41 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.1",
"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.10.1",
"@actions/http-client": "~2.1.1",
"@actions/tool-cache": "^2.0.1",
"@badrap/valita": "^0.3.8",
"@iarna/toml": "^2.2.5",
"jsonc-parser": "^3.2.1",
"semver": "^6.3.1",
"shell-quote": "^1.8.1",
"which": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.2",
"@types/semver": "^6.2.7",
"@types/shell-quote": "^1.7.5",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitest/coverage-v8": "^1.6.0",
"dprint": "^0.46.1",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^53.0.0",
"husky": "^9.0.11",
"jest-serializer-path": "^0.1.15",
"klona": "^2.0.6",
"rimraf": "^5.0.7",
"typescript": "~5.4.5",
"vitest": "^1.6.0"
},
"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",
"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]+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390"
}