-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.99 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
{
"name": "chapbook",
"version": "1.2.2",
"description": "A small CSS system for documents that want to read like documents. Monospace carries structure, a second face carries language, and separation comes from rules and space rather than from cards. Nine rules, no dependencies, no build step.",
"keywords": [
"css",
"design-system",
"classless",
"typography",
"monospace",
"dark-mode",
"accessibility",
"wcag",
"print-stylesheet",
"no-dependencies"
],
"homepage": "https://chapbook.page",
"repository": {
"type": "git",
"url": "git+https://github.com/aarontaylor-dev/chapbook.git"
},
"bugs": {
"url": "https://github.com/aarontaylor-dev/chapbook/issues"
},
"license": "MIT",
"author": {
"name": "Aaron Taylor",
"url": "https://aarontaylor.me"
},
"contributors": [
{
"name": "Aaron Taylor",
"url": "https://github.com/aarontaylor-dev"
}
],
"type": "module",
"sideEffects": [
"*.css"
],
"style": "chapbook.css",
"exports": {
".": "./chapbook.css",
"./chapbook.css": "./chapbook.css",
"./skins": "./chapbook-skins.css",
"./chapbook-skins.css": "./chapbook-skins.css",
"./theme": "./chapbook-theme.js",
"./chapbook-theme.js": "./chapbook-theme.js",
"./measure": "./src/measure.js",
"./system.md": "./system.md",
"./package.json": "./package.json"
},
"files": [
"chapbook.css",
"chapbook-skins.css",
"chapbook-theme.js",
"src/measure.js",
"src/conformance.js",
"scripts/release-notes.js",
"audit.js",
"system.md",
"llms.txt",
"skill/",
"CHANGELOG.md",
"LICENSE.txt"
],
"scripts": {
"build": "node build.js",
"audit": "node audit.js",
"test": "node build.js && node audit.js",
"prepack": "node build.js && node scripts/sync-dist.js",
"start": "node build.js && python3 -m http.server 4400 --directory public"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}