-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.04 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
{
"name": "orbux",
"version": "0.2.2",
"private": true,
"type": "module",
"description": "State-aware loaders for AI interfaces built with Web Components, CSS, Canvas 2D, and WebGL.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikast908/ORBUX.git"
},
"bugs": {
"url": "https://github.com/vikast908/ORBUX/issues"
},
"homepage": "https://github.com/vikast908/ORBUX#readme",
"keywords": [
"web-components",
"loaders",
"loading-animation",
"agent-ui",
"ai-ui",
"canvas",
"webgl"
],
"packageManager": "pnpm@10.26.2",
"engines": {
"node": ">=20"
},
"scripts": {
"registry": "node scripts/build-registry.mjs",
"browser-bundles": "node scripts/build-browser-bundles.mjs",
"catalog:generate": "node scripts/generate-recipe-catalog.mjs",
"site": "pnpm --filter @orbux/site dev",
"site:build": "pnpm registry && pnpm --filter @orbux/site build",
"dev": "pnpm registry && pnpm --filter @orbux/site dev",
"build": "pnpm registry && turbo run build",
"test": "pnpm --filter @vikast908/core build && pnpm --filter @vikast908/loaders build && node --test tests/core/*.test.mjs tests/catalog/*.test.mjs",
"test:browser": "node scripts/browser-verify.mjs",
"test:ui": "pnpm --filter @orbux/site build && node scripts/ui-ux-audit.mjs",
"test:ui:clicks": "node scripts/ui-click-verify.mjs",
"typecheck": "turbo run typecheck",
"publish:core": "pnpm --filter @vikast908/core publish --access public",
"publish:loaders": "pnpm --filter @vikast908/loaders publish --access public",
"publish": "pnpm publish:core && pnpm publish:loaders",
"new:loader": "node scripts/new-loader.mjs",
"format": "biome format --write .",
"lint": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"ajv": "^8.20.0",
"esbuild": "^0.27.7",
"happy-dom": "^20.10.6",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}