-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 6.86 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 6.86 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
{
"name": "vanilla-breeze",
"version": "0.1.3",
"description": "A layered HTML component system extending HTML's native model",
"type": "module",
"main": "./dist/cdn/vanilla-breeze.js",
"module": "./dist/cdn/vanilla-breeze.js",
"style": "./dist/cdn/vanilla-breeze.css",
"exports": {
".": {
"import": "./dist/cdn/vanilla-breeze.js",
"style": "./dist/cdn/vanilla-breeze.css"
},
"./css": "./dist/cdn/vanilla-breeze.css",
"./core-css": "./dist/cdn/vanilla-breeze-core.css",
"./charts-css": "./dist/cdn/vanilla-breeze-charts.css",
"./dev-css": "./dist/cdn/vanilla-breeze-dev.css",
"./js": "./dist/cdn/vanilla-breeze.js",
"./core-js": "./dist/cdn/vanilla-breeze-core.js",
"./extras-js": "./dist/cdn/vanilla-breeze-extras.js",
"./dev-js": "./dist/cdn/vanilla-breeze-dev.js",
"./themes/*": "./dist/cdn/themes/*.css",
"./ui-js": "./dist/cdn/packs/ui.full.js",
"./ui-css": "./dist/cdn/packs/ui.full.css",
"./effects-js": "./dist/cdn/packs/effects.full.js",
"./effects-css": "./dist/cdn/packs/effects.full.css",
"./prototype-js": "./dist/cdn/packs/prototype.full.js",
"./prototype-css": "./dist/cdn/packs/prototype.full.css",
"./fonts-foundation-css": "./dist/cdn/packs/fonts-foundation.theme.css",
"./fonts-display-css": "./dist/cdn/packs/fonts-display.theme.css",
"./fonts-expressive-css": "./dist/cdn/packs/fonts-expressive.theme.css",
"./icons-css": "./dist/cdn/packs/icons.full.css",
"./icons-js": "./dist/cdn/packs/icons.full.js",
"./design-system-css": "./dist/cdn/packs/design-system.full.css",
"./design-system-js": "./dist/cdn/packs/design-system.full.js",
"./kawaii-css": "./dist/cdn/packs/kawaii.full.css",
"./kawaii-js": "./dist/cdn/packs/kawaii.full.js",
"./memphis-css": "./dist/cdn/packs/memphis.full.css",
"./memphis-js": "./dist/cdn/packs/memphis.full.js",
"./ux-planning-css": "./dist/cdn/packs/ux-planning.full.css",
"./ux-planning-js": "./dist/cdn/packs/ux-planning.full.js"
},
"files": [
"dist/cdn/",
"!dist/cdn/**/*.map",
"!dist/cdn/budget-report.json",
"!dist/cdn/doc-extras.js",
"!dist/cdn/emoji-extended.js",
"!dist/cdn/sw.js",
"!dist/cdn/vanilla-breeze-autoload.js",
"!dist/cdn/packs/icons/fonts/",
"custom-elements.json",
"README.md",
"LICENSE"
],
"sideEffects": [
"*.css",
"./dist/cdn/vanilla-breeze.js"
],
"repository": {
"type": "git",
"url": "https://github.com/profpowell/vanilla-breeze.git"
},
"homepage": "https://profpowell.github.io/vanilla-breeze/",
"scripts": {
"clean": "rm -rf site/dist",
"prebuild": "npm run clean",
"dev": "cd site && npm run dev",
"build": "npm run build:api && npm run check:nav && npm run build:feed && npm run build:cdn && npm run build:demos && cd site && npm run build && cd .. && npm run build:site-assets && cd site && node scripts/setup-preview.js",
"build:site-assets": "node scripts/build-demos.js && node scripts/assemble-site.js && node scripts/generate-sitemap.js",
"audit:deploy": "node scripts/audit-deploy-parity.js",
"build:dev": "cd site && npm run build",
"build:site": "cd site && npm run build",
"build:api": "node scripts/build-api-registry.js",
"check:nav": "node scripts/check-nav-drift.js",
"build:feed": "node scripts/build-feed.js",
"build:cdn": "node scripts/build-cdn.js",
"build:demos": "node scripts/build-demos.js",
"build:cem": "custom-elements-manifest analyze",
"build:copy-icons": "mkdir -p dist/src && cp -r src/icons dist/src/icons",
"build:fix-paths": "node scripts/fix-paths.js",
"search:index": "cd site && pagefind",
"preview": "cd site && npm run preview",
"lint:html": "html-validate 'demos/**/*.html'",
"lint:js": "eslint --config .claude/eslint.config.js --ignore-pattern 'src/htmlvalidate/' 'src/**/*.js'",
"lint:theme-tokens": "node scripts/quality/theme-token-coverage.js",
"lint": "npm run lint:html",
"test": "node --test 'tests/unit/**/*.test.js'",
"health": "node scripts/quality/health-check.js",
"validate:api": "node scripts/build-api-registry.js --validate-only",
"check:api-drift": "node scripts/quality/api-drift-check.js",
"lint:color-tokens": "node scripts/quality/color-token-lint.js",
"check": "npm run validate:api && npm run check:api-drift && npm run lint:color-tokens && npm run lint && npm run lint:js && npm run typecheck && npm run test && npm run conformance",
"icons:sync": "node scripts/sync-icons.js",
"lighthouse": "npx lhci autorun",
"lint:budget": "node scripts/quality/resource-budget.js",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.scripts.json && tsc --noEmit -p tsconfig.tests.json",
"check:component-files": "node scripts/quality/component-files-check.js",
"conformance": "node scripts/quality/vb-conformance.js --ci demos/examples/demos/ && node scripts/quality/component-files-check.js",
"test:visual": "npx playwright test tests/visual/",
"test:visual:update": "npx playwright test tests/visual/ --update-snapshots",
"test:visual:report": "npx playwright show-report",
"test:surfaces": "npx playwright test tests/visual/theme-surfaces.spec.js",
"test:components": "npx playwright test tests/components/",
"compendium:validate": "node tests/element-visual/compendium/validate.js",
"fixtures:generate": "node tests/element-visual/fixtures/generate-fixtures.js",
"test:elements": "npm run fixtures:generate && npx playwright test --config tests/element-visual/playwright.config.js",
"test:elements:update": "npm run fixtures:generate && npx playwright test --config tests/element-visual/playwright.config.js --update-snapshots",
"gallery:build": "node tests/element-visual/gallery/build-gallery.js",
"gallery": "npm run test:elements && npm run gallery:build",
"test:all": "npm test && npx playwright test",
"budget": "node scripts/bundle-budget.js",
"budget:themes": "node scripts/theme-budget.js",
"prepublishOnly": "npm run build:cdn"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@lhci/cli": "^0.15.1",
"@profpowell/browser-window": "^1.4.5",
"@profpowell/code-block": "^2.7.0",
"eslint-plugin-jsdoc": "^62.7.1",
"html-validate": "^8.24.0",
"interestfor": "^1.0.7",
"linkedom": "^0.18.12",
"lucide-static": "^0.562.0",
"markdownlint-cli": "^0.47.0",
"marked": "^17.0.5",
"pagefind": "^1.4.0",
"playwright": "^1.58.2",
"sharp": "^0.34.5",
"stylelint-config-standard": "^40.0.0",
"text-readability": "^1.1.1",
"textlint": "^15.5.2",
"textlint-rule-no-todo": "^2.0.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"keywords": [
"components",
"css",
"custom-elements",
"web-components",
"a11y"
],
"license": "MIT",
"customElements": "custom-elements.json",
"dependencies": {
"codex-claude-bridge": "^0.3.6"
}
}