-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "generate-directory-listing-action",
"description": "GitHub Actions to generate directory listing",
"version": "1.1.0",
"main": "src/core/main.ts",
"author": "yKicchan",
"private": true,
"license": "MIT",
"homepage": "https://github.com/yKicchan/generate-directory-listing-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yKicchan/generate-directory-listing-action.git"
},
"bugs": {
"url": "https://github.com/yKicchan/generate-directory-listing-action/issues"
},
"scripts": {
"presb": "rm -rf ./sandbox",
"sb": "scripts/sandbox",
"predev": "npm run sb",
"dev": "npm run build && node --env-file=.env dist/index.js",
"build": "node esbuild.config.mjs",
"pretest": "npm run sb",
"test": "vitest run",
"posttest": "npm run presb",
"precoverage": "npm run sb",
"coverage": "vitest run --coverage",
"postcoverage": "npm run presb",
"check": "biome check",
"fix": "biome check --write",
"release": "scripts/release"
},
"packageManager": "[email protected]+sha1.a5add41e0d4338f72421888b583745125f3bf1ba",
"dependencies": {
"@actions/core": "^1.11.1",
"bytes": "^3.1.2",
"cssnano": "^7.0.6",
"glob": "^11.0.0",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.3",
"preact": "^10.25.3",
"preact-render-to-string": "^6.5.12"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@preact/preset-vite": "^2.9.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/preact": "^3.2.4",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bytes": "^3.1.5",
"@types/node": "^22.10.2",
"@types/postcss-flexbugs-fixes": "^5.0.3",
"@types/postcss-preset-env": "^8.0.0",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "^0.24.2",
"happy-dom": "^16.0.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}