-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.84 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
{
"name": "markdown-to-pages-action",
"version": "1.0.1",
"description": "Turn your README(s) into a basic static site using Github Actions",
"homepage": "https://www.doubleu.codes/markdown-to-pages-action",
"bugs": {
"url": "https://github.com/wranders/markdown-to-pages-action/issues"
},
"license": "MIT",
"author": "W Anders <[email protected]> (https://www.doubleu.codes/)",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/wranders/markdown-to-pages-action"
},
"scripts": {
"clean:dist": "node -e \"require('fs').rm('dist',{recursive:true,force:true},()=>{});\"",
"clean:lib": "node -e \"require('fs').rm('lib',{recursive:true,force:true},()=>{});\"",
"clean:scripts": "node -e \"require('fs').rm('scripts/bin',{recursive:true,force:true},()=>{});\"",
"clean:imports": "node -e \"require('fs').rm('src/imports',{recursive:true,force:true},()=>{});\"",
"clean": "npm run clean:dist && npm run clean:lib && npm run clean:scripts && npm run clean:imports",
"prebuild": "npm run clean && tsc --project scripts && node scripts/bin/bundle.js",
"build": "tsc",
"prepackage": "npm run build",
"package": "ncc build --minify --license licenses.txt"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@primer/css": "^21.3.1",
"@primer/view-components": "^0.24.1",
"@vercel/ncc": "^0.38.1",
"github-syntax-dark": "^0.5.0",
"github-syntax-light": "^0.5.0",
"pug": "^3.0.2",
"sass": "^1.77.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"private": true
}