-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
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
{
"name": "setup-texlive-action",
"private": true,
"version": "4.1.1",
"description": "A GitHub Action to set up TeX Live",
"scripts": {
"build": "node scripts/build.mjs",
"build:data": "npm -w packages/data run build",
"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": "cd packages && rspack",
"link-check": "markdown-link-check README.md",
"lint": "cd packages && eslint .",
"tag:prep": "bash scripts/bump-version.sh",
"tag": "bash scripts/bump-version.sh",
"test": "cd packages && vitest",
"prepack": "run-p --aggregate-output -c build licenses",
"preversion": "npm ci && npm run build:data && npm run prepack",
"version": "bash scripts/bump-version.sh"
},
"author": "@TeX-Live",
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
"engines": {
"node": ">=24"
},
"files": [
"action.yml",
"dist"
],
"exports": {
"./package.json": "./package.json"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"semver": "^7.7.3"
},
"devDependencies": {
"@go-task/cli": "^3.42.1",
"@rspack/cli": "~1.3.5",
"@types/mock-fs": "^4.13.4",
"@types/node": "24.*",
"@types/semver": "^7.7.1",
"better-typescript-lib": "^2.11.0",
"dprint": "^0.49.1",
"editorconfig-checker": "^6.0.1",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"git-cliff": "^2.8.0",
"markdown-link-check": "^3.13.7",
"mock-fs": "^5.5.0",
"npm-run-all2": "^7.0.2",
"patch-package": "^8.0.0",
"taze": "^19.0.4",
"ts-dedent": "^2.2.0",
"ts-essentials": "^10.0.4",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"overrides": {
"@rspack/core": "1.1.*",
"ajv-cli": {
"fast-json-patch": "^3.1.1"
},
"rimraf@<=3": "^6.0.1",
"semver": "$semver"
}
}