@janovix/blocks 1.0.0-rc.2
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.
- package/README.md +73 -0
- package/dist/index.cjs +9557 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +111 -0
- package/dist/index.d.ts +111 -0
- package/dist/index.js +9513 -0
- package/dist/index.js.map +1 -0
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@janovix/blocks",
|
|
3
|
+
"version": "1.0.0-rc.2",
|
|
4
|
+
"description": "Shared UI components for Janovix applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsup --watch",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "eslint . --max-warnings=0",
|
|
31
|
+
"lint:fix": "eslint . --fix",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"format:check": "prettier --check .",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:watch": "vitest",
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"prepublishOnly": "pnpm build",
|
|
38
|
+
"release": "semantic-release"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/janovix/blocks.git"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"react",
|
|
46
|
+
"ui",
|
|
47
|
+
"components",
|
|
48
|
+
"theme-switcher",
|
|
49
|
+
"janovix"
|
|
50
|
+
],
|
|
51
|
+
"author": "Janovix",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"lucide-react": ">=0.400.0",
|
|
58
|
+
"motion": ">=11.0.0",
|
|
59
|
+
"next-themes": ">=0.4.0",
|
|
60
|
+
"react": ">=18.0.0",
|
|
61
|
+
"react-dom": ">=18.0.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@commitlint/cli": "^19.8.1",
|
|
65
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
66
|
+
"@eslint/js": "^9.26.0",
|
|
67
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
68
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
69
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
70
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
71
|
+
"@semantic-release/git": "^10.0.1",
|
|
72
|
+
"@semantic-release/github": "^11.0.1",
|
|
73
|
+
"@semantic-release/npm": "^13.1.3",
|
|
74
|
+
"@types/react": "^19.1.3",
|
|
75
|
+
"@types/react-dom": "^19.1.3",
|
|
76
|
+
"@vitest/coverage-istanbul": "^4.0.0",
|
|
77
|
+
"class-variance-authority": "^0.7.1",
|
|
78
|
+
"clsx": "^2.1.1",
|
|
79
|
+
"eslint": "^9.26.0",
|
|
80
|
+
"eslint-config-prettier": "^10.1.3",
|
|
81
|
+
"lucide-react": "^0.511.0",
|
|
82
|
+
"motion": "^12.11.0",
|
|
83
|
+
"next-themes": "^0.4.4",
|
|
84
|
+
"prettier": "^3.5.3",
|
|
85
|
+
"react": "^19.1.0",
|
|
86
|
+
"react-dom": "^19.1.0",
|
|
87
|
+
"husky": "^9.1.7",
|
|
88
|
+
"jsdom": "^26.1.0",
|
|
89
|
+
"semantic-release": "^25.0.2",
|
|
90
|
+
"tailwind-merge": "^3.3.0",
|
|
91
|
+
"tsup": "^8.5.0",
|
|
92
|
+
"typescript": "^5.9.3",
|
|
93
|
+
"typescript-eslint": "^8.32.1",
|
|
94
|
+
"vitest": "^4.0.0"
|
|
95
|
+
},
|
|
96
|
+
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b"
|
|
97
|
+
}
|