@static-ui/registry 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.json +1184 -68
  2. package/package.json +33 -14
  3. package/registry.json +649 -0
package/package.json CHANGED
@@ -1,42 +1,61 @@
1
1
  {
2
2
  "name": "@static-ui/registry",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "private": false,
5
5
  "type": "module",
6
- "description": "The raw component source code and structural catalog map for Static UI",
6
+ "description": "Static UI component registry UI components, blocks, and templates for all supported frameworks.",
7
7
  "main": "./dist/index.json",
8
+ "module": "./dist/index.json",
8
9
  "exports": {
9
- ".": "./dist/index.json"
10
+ ".": {
11
+ "import": "./dist/index.json",
12
+ "default": "./dist/index.json"
13
+ },
14
+ "./registry.json": "./registry.json"
10
15
  },
11
16
  "files": [
12
- "dist"
17
+ "dist",
18
+ "registry.json"
13
19
  ],
20
+ "sideEffects": false,
14
21
  "publishConfig": {
15
22
  "access": "public"
16
23
  },
17
24
  "scripts": {
18
25
  "build": "tsx scripts/build-registry.ts",
19
- "test": "echo \"Error: no test specified\" && exit 1"
26
+ "typecheck": "tsc --noEmit"
20
27
  },
21
28
  "keywords": [
22
29
  "static-ui",
23
30
  "components",
24
31
  "registry",
25
- "base-ui"
32
+ "blocks",
33
+ "templates",
34
+ "base-ui",
35
+ "react",
36
+ "vue",
37
+ "svelte",
38
+ "solid"
26
39
  ],
27
- "author": "Anshul Shakya",
28
- "license": "ISC",
29
- "dependencies": {
30
- "@base-ui/react": "^1.5.0",
31
- "class-variance-authority": "^0.7.1",
32
- "react": "^19.2.7"
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/Anshul563/static-ui.git",
43
+ "directory": "packages/registry"
33
44
  },
45
+ "homepage": "https://get-staticui.vercel.app",
46
+ "bugs": {
47
+ "url": "https://github.com/Anshul563/static-ui/issues"
48
+ },
49
+ "author": {
50
+ "name": "Anshul Shakya",
51
+ "url": "https://github.com/Anshul563"
52
+ },
53
+ "license": "MIT",
34
54
  "devDependencies": {
35
55
  "@types/fs-extra": "^11.0.4",
36
56
  "@types/node": "^20.19.41",
37
- "@types/react": "^19.2.16",
38
57
  "fs-extra": "^11.3.5",
39
58
  "tsx": "^4.22.4",
40
59
  "typescript": "^5.9.3"
41
60
  }
42
- }
61
+ }