@nuvra-ui/react 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/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @nuvra-ui/react
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7d51429`](https://github.com/nuvra-ui/Nuvra-UI/commit/7d514296ca01a8fb975ef37f47d67abc582f16d3) - Just testing the CI/CD pipeline.
8
+
9
+ - [`3ec6a6f`](https://github.com/nuvra-ui/Nuvra-UI/commit/3ec6a6faacadf5b68e61ebc44aa5d93618839988) - Testing Changeset
@@ -0,0 +1,3 @@
1
+ import { baseConfig } from "@nuvra-ui/eslint-config";
2
+
3
+ export default baseConfig;
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@nuvra-ui/react",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "./dist/index.umd.js",
6
+ "module": "./dist/index.es.js",
7
+ "peerDependencies": {
8
+ "react": "^19.2.0",
9
+ "react-dom": "^19.2.0"
10
+ },
11
+ "dependencies": {
12
+ "@nuvra-ui/eslint-config": "0.0.0"
13
+ },
14
+ "devDependencies": {
15
+ "@eslint/js": "^9.39.1",
16
+ "@types/node": "^24.10.1",
17
+ "@types/react": "^19.2.5",
18
+ "@types/react-dom": "^19.2.3",
19
+ "@vitejs/plugin-react": "^5.1.1",
20
+ "eslint": "^9.39.1",
21
+ "eslint-plugin-react-hooks": "^7.0.1",
22
+ "eslint-plugin-react-refresh": "^0.4.24",
23
+ "globals": "^16.5.0",
24
+ "typescript": "~5.9.3",
25
+ "typescript-eslint": "^8.46.4",
26
+ "vite": "npm:rolldown-vite@7.2.5",
27
+ "vite-plugin-dts": "^4.5.4"
28
+ },
29
+ "scripts": {
30
+ "dev": "vite",
31
+ "build": "tsc -b && vite build",
32
+ "lint": "eslint .",
33
+ "preview": "vite preview"
34
+ }
35
+ }
package/src/index.ts ADDED
File without changes
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
+ "target": "ES2022",
5
+ "useDefineForClassFields": true,
6
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
+ "module": "ESNext",
8
+ "types": ["vite/client"],
9
+ "skipLibCheck": true,
10
+
11
+ /* Bundler mode */
12
+ "moduleResolution": "bundler",
13
+ "allowImportingTsExtensions": true,
14
+ "verbatimModuleSyntax": true,
15
+ "moduleDetection": "force",
16
+ "noEmit": true,
17
+ "jsx": "react-jsx",
18
+
19
+ /* Linting */
20
+ "strict": true,
21
+ "noUnusedLocals": true,
22
+ "noUnusedParameters": true,
23
+ "erasableSyntaxOnly": true,
24
+ "noFallthroughCasesInSwitch": true,
25
+ "noUncheckedSideEffectImports": true,
26
+ },
27
+ "include": ["src"],
28
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "files": [],
3
+ "references": [
4
+ { "path": "./tsconfig.app.json" },
5
+ { "path": "./tsconfig.node.json" }
6
+ ]
7
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
+ "target": "ES2023",
5
+ "lib": ["ES2023"],
6
+ "module": "ESNext",
7
+ "types": ["node"],
8
+ "skipLibCheck": true,
9
+
10
+ /* Bundler mode */
11
+ "moduleResolution": "bundler",
12
+ "allowImportingTsExtensions": true,
13
+ "verbatimModuleSyntax": true,
14
+ "moduleDetection": "force",
15
+ "noEmit": true,
16
+
17
+ /* Linting */
18
+ "strict": true,
19
+ "noUnusedLocals": true,
20
+ "noUnusedParameters": true,
21
+ "erasableSyntaxOnly": true,
22
+ "noFallthroughCasesInSwitch": true,
23
+ "noUncheckedSideEffectImports": true
24
+ },
25
+ "include": ["vite.config.ts"]
26
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,24 @@
1
+ import { defineConfig } from "vite";
2
+ import react from "@vitejs/plugin-react";
3
+ import dts from "vite-plugin-dts";
4
+ import { resolve } from "path";
5
+
6
+ export default defineConfig({
7
+ plugins: [react(), dts()],
8
+ build: {
9
+ lib: {
10
+ entry: resolve(__dirname, "src/index.ts"),
11
+ name: "Nuvra-UI",
12
+ fileName: (format) => `index.${format}.js`,
13
+ },
14
+ rollupOptions: {
15
+ external: ["react", "react-dom"],
16
+ output: {
17
+ globals: {
18
+ react: "React",
19
+ "react-dom": "ReactDOM",
20
+ },
21
+ },
22
+ },
23
+ },
24
+ });