-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.07 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
{
"name": "setup-texlive-action",
"private": true,
"version": "3.3.4",
"description": "A GitHub Action to set up TeX Live",
"scripts": {
"build": "node scripts/build.mjs",
"changelog": "git cliff -c packages/config/cliff.toml -u -s all",
"check": "tsc -p packages/tsconfig.json --noEmit",
"dprint": "dprint -c packages/config/dprint/dprint.jsonc",
"e2e": "npm -w packages/e2e run e2e --",
"fmt": "npm run dprint fmt",
"fmt-check": "run-p --aggregate-output -c 'dprint check' fmt-check:ec",
"fmt-check:ec": "git ls-files -z | xargs -0 ec",
"licenses": "rspack -c packages/config/rspack/rspack.config.mjs",
"link-check": "markdown-link-check README.md",
"lint": "cd packages && eslint .",
"test": "cd packages && vitest",
"prepack": "run-p --aggregate-output -c build licenses",
"preversion": "npm run prepack",
"version": "bash scripts/bump-version.sh",
"postversion": "bash scripts/bump-version.sh"
},
"author": "@teatimeguest",
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
"engines": {
"node": ">=20"
},
"files": [
"action.yml",
"dist"
],
"exports": {
"./package.json": "./package.json"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"semver": "^7.6.3"
},
"devDependencies": {
"@go-task/cli": "^3.39.2",
"@rspack/cli": "^1.0.14",
"@types/mock-fs": "^4.13.4",
"@types/node": "~20.16.15",
"@types/semver": "^7.5.8",
"better-typescript-lib": "^2.9.0",
"dprint": "^0.47.5",
"editorconfig-checker": "^6.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"git-cliff": "^2.6.1",
"jest-extended": "^4.0.2",
"markdown-link-check": "^3.12.2",
"mock-fs": "^5.4.1",
"npm-run-all2": "^7.0.1",
"patch-package": "^8.0.0",
"taze": "^0.18.0",
"ts-dedent": "^2.2.0",
"ts-essentials": "^10.0.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
},
"overrides": {
"ajv-cli": {
"fast-json-patch": "^3.1.1"
},
"rimraf@<=3": "^6.0.1",
"semver": "$semver"
}
}