-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.3 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.3 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
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
{
"name": "@domstack/static",
"description": "@domstack/static: a traditional web bakery made with html, md, css and js.",
"version": "11.0.3",
"type": "module",
"main": "./index.js",
"types": "index.d.ts",
"bin": {
"domstack": "./bin.js",
"dom": "./bin.js"
},
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/domstack/issues"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@11ty/dependency-tree-typescript": "^1.0.0",
"argsclopts": "^1.0.4",
"async-folder-walker": "^3.0.5",
"browser-sync": "^3.0.2",
"chokidar": "^5.0.0",
"clean-deep": "^3.4.0",
"cpx2": "^8.0.0",
"esbuild": "^0.27.1",
"handlebars": "^4.7.8",
"highlight.js": "^11.9.0",
"htm": "^3.1.1",
"ignore": "^7.0.0",
"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": "^1.1.0",
"markdown-it-task-lists": "^2.1.1",
"mine.css": "^10.0.0",
"p-map": "^7.0.2",
"package-directory": "^8.1.0",
"package-json": "^10.0.0",
"preact": "^10.26.6",
"preact-render-to-string": "^6.5.13",
"pretty": "^2.0.0",
"pretty-tree": "^1.0.0",
"read-pkg": "^10.0.0",
"write-package": "^7.0.1"
},
"devDependencies": {
"c8": "^11.0.0",
"cheerio": "^1.0.0-rc.10",
"@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": "^25.3.0",
"@voxpelli/tsconfig": "^16.0.0",
"auto-changelog": "^2.4.0",
"gh-release": "^7.0.2",
"installed-check": "^10.0.1",
"jsonfeed-to-atom": "^1.2.5",
"neostandard": "^0.12.0",
"npm-run-all2": "^8.0.1",
"typescript": "~5.9.2"
},
"homepage": "https://github.com/bcomnes/domstack",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/domstack.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:node-test": "c8 --reporter=lcov --reporter=text node --test --test-reporter spec",
"test:tsc": "tsc",
"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')",
"clean-node_modules": "rm -rf node_modules && rm -rf examples/*/node_modules",
"build": "npm run clean && run-p build:*",
"build:domstack": "./bin.js --src . --ignore examples,test-cases,coverage,*.tsconfig.json,fonts",
"build:declaration": "tsc -p declaration.tsconfig.json",
"watch": "npm run clean && run-p watch:*",
"watch:domstack": "npm run build:domstack -- --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:uhtml-isomorphic": "cd examples/uhtml-isomorphic && npm i --production && npm run build",
"start": "npm run watch"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
}
}