@staticbolt/core 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +70 -0
- package/lib/cli/index.d.mts +1 -0
- package/lib/cli/index.mjs +177 -0
- package/lib/cli/index.mjs.map +1 -0
- package/lib/dependency-tracker-BuZfopIj.mjs +485 -0
- package/lib/dependency-tracker-BuZfopIj.mjs.map +1 -0
- package/lib/index.d.mts +1734 -0
- package/lib/index.d.mts.map +1 -0
- package/lib/index.mjs +11 -0
- package/lib/index.mjs.map +1 -0
- package/lib/logger-BuxMGhij.mjs +190 -0
- package/lib/logger-BuxMGhij.mjs.map +1 -0
- package/lib/plugins/index.d.mts +1181 -0
- package/lib/plugins/index.d.mts.map +1 -0
- package/lib/plugins/index.mjs +8559 -0
- package/lib/plugins/index.mjs.map +1 -0
- package/package.json +112 -0
package/package.json
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@staticbolt/core",
|
|
3
|
+
"version": "1.0.0-beta.0",
|
|
4
|
+
"description": "Static website builder",
|
|
5
|
+
"private": false,
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Ahmed ALABSI",
|
|
8
|
+
"bin": {
|
|
9
|
+
"staticbolt": "lib/cli/index.mjs"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./lib/index.d.mts",
|
|
15
|
+
"node": "./lib/index.mjs",
|
|
16
|
+
"default": "./lib/index.mjs"
|
|
17
|
+
},
|
|
18
|
+
"./plugins": {
|
|
19
|
+
"types": "./lib/plugins/index.d.mts",
|
|
20
|
+
"node": "./lib/plugins/index.mjs",
|
|
21
|
+
"default": "./lib/plugins/index.mjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"prepack": "npm run build",
|
|
26
|
+
"generate-cli-documentation": "node scripts/generate-cli-docs.js",
|
|
27
|
+
"watch": "tsdown -w 'src/**/*.ts'",
|
|
28
|
+
"build": "tsdown && npm run generate-cli-documentation",
|
|
29
|
+
"fix-lint": "eslint --config eslint.config.mjs --fix",
|
|
30
|
+
"ts-check": "tsc --noEmit"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"lib",
|
|
34
|
+
"template",
|
|
35
|
+
"patches",
|
|
36
|
+
"docs"
|
|
37
|
+
],
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@babel/core": "^7.29.0",
|
|
40
|
+
"@babel/generator": "^7.29.1",
|
|
41
|
+
"@babel/parser": "^7.29.3",
|
|
42
|
+
"@babel/preset-env": "^7.29.5",
|
|
43
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
44
|
+
"@babel/traverse": "^7.29.0",
|
|
45
|
+
"@babel/types": "^7.29.0",
|
|
46
|
+
"@fastify/static": "^9.1.3",
|
|
47
|
+
"@fastify/url-data": "^6.0.3",
|
|
48
|
+
"@swc/core": "^1.15.33",
|
|
49
|
+
"@types/web-app-manifest": "^1.0.9",
|
|
50
|
+
"babel-plugin-transform-define": "^2.1.4",
|
|
51
|
+
"boxen": "^8.0.1",
|
|
52
|
+
"browserslist": "^4.28.2",
|
|
53
|
+
"canvas": "^3.2.3",
|
|
54
|
+
"chalk": "^5.6.2",
|
|
55
|
+
"chokidar": "^5.0.0",
|
|
56
|
+
"comment-parser": "^1.4.6",
|
|
57
|
+
"cssnano": "^8.0.0",
|
|
58
|
+
"cssnano-preset-default": "^8.0.0",
|
|
59
|
+
"emphasize": "^7.0.0",
|
|
60
|
+
"esbuild": "^0.28.0",
|
|
61
|
+
"fastify": "^5.8.5",
|
|
62
|
+
"fontkit": "^2.0.4",
|
|
63
|
+
"glob": "^13.0.6",
|
|
64
|
+
"html-minifier-terser": "^7.2.0",
|
|
65
|
+
"jsdom": "^29.1.1",
|
|
66
|
+
"json5": "^2.2.3",
|
|
67
|
+
"lightningcss": "^1.32.0",
|
|
68
|
+
"micromatch": "^4.0.8",
|
|
69
|
+
"oxc-resolver": "^11.19.1",
|
|
70
|
+
"patch-package": "^8.0.1",
|
|
71
|
+
"postcss": "^8.5.14",
|
|
72
|
+
"postcss-import": "^16.1.1",
|
|
73
|
+
"postcss-load-config": "^6.0.1",
|
|
74
|
+
"prettier": "^3.8.3",
|
|
75
|
+
"prettier-plugin-organize-imports": "^4.3.0",
|
|
76
|
+
"rehype-external-links": "^3.0.0",
|
|
77
|
+
"rehype-slug": "^6.0.0",
|
|
78
|
+
"rehype-stringify": "^10.0.1",
|
|
79
|
+
"remark": "^15.0.1",
|
|
80
|
+
"remark-frontmatter": "^5.0.0",
|
|
81
|
+
"remark-gfm": "^4.0.1",
|
|
82
|
+
"remark-rehype": "^11.1.2",
|
|
83
|
+
"remark-smartypants": "^3.0.2",
|
|
84
|
+
"sharp": "^0.34.5",
|
|
85
|
+
"svgo": "^4.0.1",
|
|
86
|
+
"terser": "^5.46.2",
|
|
87
|
+
"ttf2woff2": "^8.0.1",
|
|
88
|
+
"workbox-build": "^7.4.1",
|
|
89
|
+
"ws": "^8.20.0",
|
|
90
|
+
"yaml": "^2.8.4",
|
|
91
|
+
"zod": "^4.4.3"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
95
|
+
"@types/babel__core": "^7.20.5",
|
|
96
|
+
"@types/babel__preset-env": "^7.10.0",
|
|
97
|
+
"@types/babel__traverse": "^7.28.0",
|
|
98
|
+
"@types/fontkit": "^2.0.9",
|
|
99
|
+
"@types/html-minifier-terser": "^7.0.2",
|
|
100
|
+
"@types/jsdom": "^28.0.1",
|
|
101
|
+
"@types/mdast": "^4.0.4",
|
|
102
|
+
"@types/micromatch": "^4.0.10",
|
|
103
|
+
"@types/postcss-import": "^14.0.3",
|
|
104
|
+
"@types/unist": "^3.0.3",
|
|
105
|
+
"@types/ws": "^8.18.1",
|
|
106
|
+
"baseline-browser-mapping": "^2.10.27"
|
|
107
|
+
},
|
|
108
|
+
"peerDependencies": {
|
|
109
|
+
"@staticbolt/args-parser": "*",
|
|
110
|
+
"@staticbolt/node-html-parser": "*"
|
|
111
|
+
}
|
|
112
|
+
}
|