-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"name": "stack-action",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Build and test stack-based Haskell projects",
"scripts": {
"build": "tsc -p tsconfig.build.json && ncc build lib/main.js --minify",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "vitest run",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"knip": "knip",
"readme": "npx action-docs -u && prettier --write README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/stack-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/cache": "^5.2.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.7.0",
"js-yaml": "^5.4.2",
"shellwords-ts": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.19.0",
"@vercel/ncc": "^0.45.0",
"@vitest/coverage-v8": "^5.0.2",
"eslint": "^10.11.0",
"knip": "^6.38.0",
"prettier": "^3.9.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.1",
"vitest": "^5.0.2"
},
"packageManager": "pnpm@12.6.0+sha512.3ef68f951cb111ac204b4a5a16f0b2ddf0da56a96e0413e81d855d9f0b55ef926714709028e1cd00c405c2c5fb7b9e8ec4dc46777c805d0373c2f2ff00fd20ec"
}