-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 7.21 KB
/
Copy pathpackage.json
File metadata and controls
177 lines (177 loc) · 7.21 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "@zefish/standard",
"version": "0.18.66",
"description": "A fine-art typography framework implementing classical design principles, mathematical precision with the golden ratio, and micro-typography rules inspired by the masters of print design.",
"author": "Francis Fontaine",
"license": "MIT",
"homepage": "https://github.com/ZeFish/Standard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ZeFish/Standard.git"
},
"bugs": {
"url": "https://github.com/ZeFish/Standard/issues"
},
"keywords": [
"css",
"framework",
"sass",
"typography",
"fine-art",
"golden-ratio",
"vertical-rhythm",
"print-design",
"micro-typography",
"swiss-style",
"baseline-grid",
"classical-typography",
"standard",
"book-layout"
],
"main": "src/astro/standard.js",
"type": "module",
"bin": {
"standard-init": "bin/init.js",
"standard-build-css": "bin/build-css.js",
"standard-build-js": "bin/build-js.js",
"standard-check": "bin/analyzer.js"
},
"exports": {
"./styles/standard.scss": "./framework/styles/standard.scss",
"./styles/standard.theme.scss": "./framework/themes/standard.theme.scss",
"./css": "./lib/standard.min.css",
"./logger": "./core/logger.js",
"./theme": "./lib/standard.theme.min.css",
"./js": "./lib/standard.min.js",
"./lab": "./lib/standard.lab.js",
"./eleventy": "./11ty/standard.js",
"./11ty/layouts/meta": "./11ty/layouts/meta.njk",
"./astro": {
"types": "./astro/type/standard.d.ts",
"default": "./astro/standard.js"
},
"./cloudflare": "./cloudflare/api/comments.js",
"./astro/remark/tags": "./astro/remark/tags.js",
"./astro/remark/standard": "./astro/remark/standard.js",
"./astro/remark/escape-code": "./astro/remark/escape-code.js",
"./astro/remark/fix-dates": "./astro/remark/fix-dates.js",
"./astro/remark/frontmatter-defaults": "./astro/remark/frontmatter-defaults.js",
"./astro/remark/syntax": "./astro/remark/syntax.js",
"./astro/rehype/standard": "./astro/rehype/standard.js",
"./astro/rehype/typography": "./astro/rehype/typography.js",
"./astro/routes/robots": "./astro/routes/robots.js",
"./astro/routes/manifest": "./astro/routes/manifest.js",
"./astro/routes/headers": "./astro/routes/headers.js",
"./astro/utils": "./astro/utils/utils.js",
"./astro/utils/collections": "./astro/utils/collections.js",
"./astro/utils/permalink": "./astro/utils/permalink.js",
"./astro/components/Menu": "./astro/components/Menu.astro",
"./astro/components/Fonts": "./astro/components/Fonts.astro",
"./astro/components/Comments": "./astro/components/Comments.astro",
"./astro/components/Assets": "./astro/components/Assets.astro",
"./astro/components/Htmx": "./astro/components/Htmx.astro",
"./astro/components/Lab": "./astro/components/Lab.astro",
"./astro/components/Css": "./astro/components/Css.astro",
"./astro/components/Backlinks": "./astro/components/Backlinks.astro",
"./astro/layouts/Base": "./astro/layouts/Base.astro",
"./astro/layouts/Meta": "./astro/layouts/Meta.astro",
"./astro/layouts/Encrypted": "./astro/layouts/Encrypted.astro",
"./astro/remark/backlinks": "./astro/remark/backlinks.js",
"./astro/content-config": "./astro/content-config.js"
},
"files": [
"bin",
"lib",
"astro",
"cloudflare",
"core",
"framework",
"public/assets",
"11ty"
],
"scripts": {
"build:css": "node bin/build-css.js",
"build:js": "node bin/build-js.js",
"verify:version": "grep -r \"Standard::Framework v\" lib/",
"watch:css": "node bin/build-css.js --watch",
"watch:js": "node bin/build-js.js --watch",
"check": "npm run build && node bin/analyzer.js",
"build": "astro build",
"watch:assets": "node bin/build-css.js --watch",
"dev": "npm run watch:css & npm run watch:js & npm run clean:ports && astro dev",
"11ty": "lsof -ti:8081 | xargs kill -9 2>/dev/null || true && npm run watch:css & npm run watch:js & npm run clean:ports && eleventy --serve --quiet --port=8081",
"start": "astro dev",
"release": "npm run build:css && npm run build:js && npm run commit && npm version patch && npm run changelog && git add CHANGELOG.md && git commit -m 'docs: update changelog' && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"release:minor": "npm run build:css && npm run build:js && npm run commit && npm version minor && npm run changelog && git add CHANGELOG.md && git commit -m 'docs: update changelog' && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"release:major": "npm run build:css && npm run build:js && npm run commit && npm version major && npm run changelog && git add CHANGELOG.md && git commit -m 'docs: update changelog' && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"changelog": "auto-changelog -p --template keepachangelog --output CHANGELOG.md",
"clean:ports": "lsof -ti:8083 | xargs kill -9 2>/dev/null || true",
"kill-node": "killall node || taskkill /F /IM node.exe",
"commit": "git add . && orc commit --yes --push",
"test": "npm run test:lib && npm run test:build && npm run test:e2e",
"test:lib": "vitest run tests/lib-integrity.test.js",
"test:build": "playwright test tests/build-verification.test.ts",
"test:e2e": "playwright test tests/astro-e2e.test.ts",
"knip": "knip",
"knip:fix": "knip --fix --include dependencies,devDependencies"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"directories": {
"example": "example"
},
"dependencies": {
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@astrojs/check": "^0.9.6",
"@astrojs/svelte": "^7.2.2",
"@fontsource-variable/fraunces": "^5.2.9",
"@fontsource-variable/instrument-sans": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/newsreader": "^5.2.10",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/instrument-serif": "^5.2.8",
"@lucide/astro": "^0.556.0",
"astro": "^5.16.4",
"cheerio": "^1.1.2",
"clean-css": "^5.3.3",
"dotenv": "^17.2.3",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"jsdom": "^27.3.0",
"linkedom": "^0.18.12",
"markdown-it": "^14.1.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-obsidian-callouts": "^0.3.3",
"modern-normalize": "^3.0.1",
"nunjucks": "^3.2.4",
"sass": "^1.95.0",
"svelte": "^5.45.6",
"terser": "^5.44.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@playwright/test": "^1.57.0",
"@types/node": "^24.10.1",
"auto-changelog": "^2.5.0",
"knip": "^5.72.0",
"opencommit": "^3.2.10",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"types": "./astro/types/standard.d.ts"
}