-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "pi-gen-action",
"version": "1.11.0",
"type": "module",
"description": "GitHub action to build a custom Raspberry Pi image using pi-gen",
"author": "Simon Domke",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"package": "ncc build src/main.ts -m --no-source-map-register --license licenses.txt",
"test": "vitest run --coverage",
"all": "npm run format && npm run lint && npm test && npm run package && npm run update-readme",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"update-readme": "tsx src/misc/update-readme.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usimd/pi-gen-action.git"
},
"bugs": {
"url": "https://github.com/usimd/pi-gen-action/issues"
},
"homepage": "https://github.com/usimd/pi-gen-action#readme",
"keywords": [
"actions",
"raspberry",
"pi-gen"
],
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"ansi-colors": "^4.1.3",
"countries-and-timezones": "3.9.0",
"json-colorizer": "^3.0.1",
"object-hash": "^3.0.0",
"tmp": "0.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@pioneer10/markdown-replace-section": "^1.0.1",
"@types/js-yaml": "4.0.9",
"@types/node": "^25.6.2",
"@types/object-hash": "^3.0.6",
"@types/semver": "7.7.1",
"@types/tmp": "0.2.6",
"@vercel/ncc": "0.44.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.17",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "5.5.6",
"js-yaml": "4.3.1",
"prettier": "3.8.4",
"semver": "7.8.4",
"ts-node": "10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "8.61.0",
"vitest": "^4.1.5",
"vitest-mock-extended": "^4.0.0",
"word-wrap": "1.2.5"
}
}