-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) Β· 4.62 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "top-bun",
"description": "top-bun: a traditional web bakery made with html, md, css and js.",
"version": "10.1.1",
"type": "module",
"main": "./index.js",
"types": "index.d.ts",
"bin": {
"top-bun": "./bin.js",
"tb": "./bin.js"
},
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/top-bun/issues"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10"
},
"dependencies": {
"argsclopts": "^1.0.4",
"async-folder-walker": "^3.0.5",
"browser-sync": "^3.0.2",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^4.0.0",
"clean-deep": "^3.4.0",
"cpx2": "^8.0.0",
"esbuild": "^0.24.0",
"handlebars": "^4.7.8",
"highlight.js": "^11.9.0",
"ignore": "^6.0.2",
"js-yaml": "^4.1.0",
"make-array": "^1.0.5",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.1.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"markdown-it-task-lists": "^2.1.1",
"mine.css": "^10.0.0",
"p-map": "^7.0.2",
"package-json": "^10.0.0",
"pkg-dir": "^8.0.0",
"pretty": "^2.0.0",
"pretty-tree": "^1.0.0",
"read-pkg": "^9.0.1",
"uhtml-isomorphic": "^2.1.0",
"write-package": "^7.0.1"
},
"devDependencies": {
"@types/browser-sync": "^2.29.0",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.1.1",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "^22.1.0",
"@voxpelli/tsconfig": "^15.0.0",
"auto-changelog": "^2.4.0",
"dependency-cruiser": "^16.3.3",
"gh-release": "^7.0.2",
"installed-check": "^9.3.0",
"jsonfeed-to-atom": "^1.2.5",
"neostandard": "^0.11.2",
"npm-run-all2": "^7.0.0",
"snazzy": "^9.0.0",
"tap": "^21.0.0",
"typescript": "~5.6.2"
},
"homepage": "https://github.com/bcomnes/top-bun",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/top-bun.git"
},
"scripts": {
"prepublishOnly": "npm run build && git push --follow-tags && gh-release -y",
"postpublish": "npm run clean",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"test": "npm run clean && run-s test:*",
"test:installed-check": "installed-check --ignore-dev",
"test:neostandard": "eslint . --ignore-pattern 'test-cases/build-errors/src/**/*.js' --ignore-pattern 'test-cases/page-build-errors/src/**/*.js'",
"test:tap": "tap",
"test:tsc": "tsc",
"test:deptree": "depcruise --validate .dependency-cruiser.json bin.js",
"build-examples": "run-p example:*",
"clean": "run-p clean:*",
"clean:public": "rm -rf public && mkdir -p public",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*')",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"build": "npm run clean && run-p build:*",
"build:top-bun": "./bin.js --src . --ignore examples,test-cases,coverage,*.tsconfig.json",
"build:declaration": "tsc -p declaration.tsconfig.json",
"watch": "npm run clean && run-p watch:*",
"watch:top-bun": "npm run build:top-bun -- --watch",
"example:basic": "cd examples/basic && npm i && npm run build",
"example:string-layouts": "cd examples/string-layouts && npm i --production && npm run build",
"example:default-layout": "cd examples/default-layout && npm i --production && npm run build",
"example:nested-dest": "cd examples/nested-dest && npm i --production && npm run build",
"example-skip:uhtml-isomorphic": "cd examples/nested-dest && npm i --production && npm run build",
"deps": "depcruise --exclude '^node_modules|^[a-zA-Z0-9\\_]+$' --output-type dot . | dot -T svg > dependencygraph.svg",
"deps3d": "depcruise --exclude '^node_modules|^[a-zA-Z0-9\\_]+$' --output-type plugin:dependency-cruiser/sample-3d-reporter-plugin --output-to 3d-dependency-graph.html .",
"start": "npm run watch"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"tap": {
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
],
"plugin": [
"!@tapjs/typescript"
]
}
}