@codecanon/next-presets 0.0.1
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 +40 -0
- package/dist/index.d.ts +112 -0
- package/dist/index.js +936 -0
- package/dist/styles.css +6418 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codecanon/next-presets",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "Allow your user to choose from a list of shadcn presets",
|
|
6
|
+
"author": "CodeCanon LLC <codecanonllc@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com//CodeCanon-LLC/codecanon-next-presets#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com//CodeCanon-LLC/codecanon-next-presets.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com//CodeCanon-LLC/codecanon-next-presets/issues"
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./dist/index.js",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"react": "^19.2.0",
|
|
29
|
+
"react-dom": "^19.2.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@commitlint/cli": "^20.5.0",
|
|
33
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
34
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
35
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
36
|
+
"@tsconfig/strictest": "^2.0.8",
|
|
37
|
+
"@types/node": "^25.5.0",
|
|
38
|
+
"@types/react": "^19.2.14",
|
|
39
|
+
"@types/react-dom": "^19.2.3",
|
|
40
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
41
|
+
"@vitest/browser-playwright": "^4.1.2",
|
|
42
|
+
"autoprefixer": "^10.4.27",
|
|
43
|
+
"bumpp": "^11.0.1",
|
|
44
|
+
"concurrently": "^9.2.1",
|
|
45
|
+
"husky": "^9.1.7",
|
|
46
|
+
"knip": "^6.4.0",
|
|
47
|
+
"lint-staged": "^16.4.0",
|
|
48
|
+
"postcss": "^8.5.9",
|
|
49
|
+
"postcss-cli": "^11.0.1",
|
|
50
|
+
"prettier": "^3.8.2",
|
|
51
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
52
|
+
"shadcn": "^4.2.0",
|
|
53
|
+
"tailwindcss": "^4.2.2",
|
|
54
|
+
"tsdown": "^0.21.7",
|
|
55
|
+
"tw-animate-css": "^1.4.0",
|
|
56
|
+
"typescript": "^6.0.2",
|
|
57
|
+
"vite": "^8.0.3",
|
|
58
|
+
"vitest": "^4.1.2",
|
|
59
|
+
"vitest-browser-react": "^2.1.0"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"class-variance-authority": "^0.7.1",
|
|
63
|
+
"clsx": "^2.1.1",
|
|
64
|
+
"lucide-react": "^1.8.0",
|
|
65
|
+
"next-themes": "^0.4.6",
|
|
66
|
+
"radix-ui": "^1.4.3",
|
|
67
|
+
"tailwind-merge": "^3.5.0"
|
|
68
|
+
},
|
|
69
|
+
"inlinedDependencies": {
|
|
70
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
71
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
72
|
+
},
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build:css": "postcss src/styles.css -o dist/styles.css",
|
|
75
|
+
"build:js": "tsdown",
|
|
76
|
+
"build": "pnpm run build:js && pnpm run build:css",
|
|
77
|
+
"dev:css": "postcss src/styles.css -o dist/styles.css --watch",
|
|
78
|
+
"dev:js": "tsdown --watch",
|
|
79
|
+
"dev": "concurrently \"pnpm run dev:js\" \"pnpm run dev:css\"",
|
|
80
|
+
"play": "vite",
|
|
81
|
+
"test": "vitest",
|
|
82
|
+
"typecheck": "tsc --noEmit",
|
|
83
|
+
"release": "bumpp && pnpm publish",
|
|
84
|
+
"format": "prettier --write .",
|
|
85
|
+
"knip": "knip"
|
|
86
|
+
}
|
|
87
|
+
}
|