-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.49 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
{
"name": "@hexpunk/core",
"version": "0.3.4",
"private": false,
"description": "Hexagonal-first, wireframe-cyberpunk Lit component design system.",
"keywords": [
"cyberpunk",
"design-system",
"hexagonal",
"hexpunk",
"lit",
"web-components"
],
"license": "MIT",
"workspaces": [
"showcase"
],
"files": [
"dist",
"src/styles/elements.css",
"src/styles/hex-controls.css",
"src/styles/hp-base.css",
"src/styles/hp-latex.css",
"src/tokens/tokens.dark.css",
"src/tokens/tokens.light.css",
"DESIGN.md",
"custom-elements.json",
"vscode.html-custom-data.json",
"assets",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./grid": {
"types": "./dist/types/grid.d.ts",
"import": "./dist/grid.js"
},
"./wip": {
"types": "./dist/types/wip.d.ts",
"import": "./dist/wip.js"
},
"./elements.css": "./src/styles/elements.css",
"./hex-controls.css": "./src/styles/hex-controls.css",
"./hp-base.css": "./src/styles/hp-base.css",
"./hp-latex.css": "./src/styles/hp-latex.css",
"./tokens.dark.css": "./src/tokens/tokens.dark.css",
"./tokens.light.css": "./src/tokens/tokens.light.css",
"./DESIGN.md": "./DESIGN.md",
"./custom-elements.json": "./custom-elements.json",
"./vscode.html-custom-data.json": "./vscode.html-custom-data.json"
},
"scripts": {
"build": "bun run tools/build.ts && bun run types",
"prepare": "bun run build",
"build:showcase": "bun run analyze && cd showcase && bun run build",
"types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist/types",
"typecheck": "tsc --noEmit",
"showcase": "cd showcase && bun run dev",
"test": "bun test --pass-with-no-tests",
"analyze": "cem analyze && bun run vscode-data && bun run elements-md",
"vscode-data": "bun run tools/build-vscode-data.ts",
"elements-md": "bun run tools/build-elements-md.ts",
"tokens": "bun run tools/build-tokens.ts",
"hex-controls": "bun run tools/build-hex-controls.ts",
"generate": "bun run tokens && bun run hex-controls && bun run analyze",
"generate:check": "bun run generate && git diff --exit-code --stat -- src/tokens src/styles/hex-controls.css custom-elements.json vscode.html-custom-data.json .ai/ELEMENTS.md",
"stats": "bun run tools/build-stats.ts",
"icons": "bun run tools/build-icons.ts",
"fonts": "bun run tools/build-fonts.ts",
"logos": "bun run tools/build-logos.ts",
"lint:design": "bun x @google/design.md lint DESIGN.md",
"lint": "oxlint src/ tools/",
"lint:fix": "oxlint --fix src/ tools/",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "bun run format:check && bun run lint && bun run typecheck && bun run test && bun run generate:check",
"setup:bindings": "bun run tools/setup-bindings.ts"
},
"dependencies": {
"lit": "^3.3.3",
"pixi.js": "^8.20.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@lit-labs/ssr": "^4.1.0",
"@types/fontkit": "^2.0.9",
"bun-types": "^1.4.0",
"fontkit": "^2.0.4",
"lucide-static": "^1.34.0",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"typescript": "^6.0.3",
"yaml": "^2.9.0"
},
"customElements": "custom-elements.json",
"trustedDependencies": [
"rs-module-lexer"
]
}