@shane_donnelly/dsi-internal-react-utils 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 +4 -0
- package/dist/Example-CYi9vFcY.js +12 -0
- package/dist/assets/Example.css +1 -0
- package/dist/components/Example/index.js +2 -0
- package/dist/main.js +2 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import './assets/Example.css';var t = { text: "_text_acpj5_1" };
|
|
3
|
+
//#endregion
|
|
4
|
+
//#region lib/components/Example/index.tsx
|
|
5
|
+
function n() {
|
|
6
|
+
return /* @__PURE__ */ e("p", {
|
|
7
|
+
className: t.text,
|
|
8
|
+
children: "Example"
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
//#endregion
|
|
12
|
+
export { n as t };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._text_acpj5_1{color:red}
|
package/dist/main.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@shane_donnelly/dsi-internal-react-utils",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
9
|
+
"lint": "eslint .",
|
|
10
|
+
"preview": "vite preview",
|
|
11
|
+
"prepublishOnly": "npm run build",
|
|
12
|
+
"release": "npm version $(git describe --tags --abbrev=0 | sed 's/^v//') --no-git-tag-version --allow-same-version && npm publish --access public"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@eslint/js": "^9.39.4",
|
|
16
|
+
"@types/node": "^24.12.2",
|
|
17
|
+
"@types/react": "^19.2.14",
|
|
18
|
+
"@types/react-dom": "^19.2.3",
|
|
19
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
20
|
+
"eslint": "^9.39.4",
|
|
21
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
22
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
23
|
+
"glob": "^13.0.6",
|
|
24
|
+
"globals": "^17.4.0",
|
|
25
|
+
"typescript": "~6.0.2",
|
|
26
|
+
"typescript-eslint": "^8.58.0",
|
|
27
|
+
"vite": "^8.0.4",
|
|
28
|
+
"vite-plugin-dts": "^4.5.4",
|
|
29
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
30
|
+
"react": "^19.2.4",
|
|
31
|
+
"react-dom": "^19.2.4"
|
|
32
|
+
},
|
|
33
|
+
"main": "dist/main.js",
|
|
34
|
+
"types": "dist/main.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"sideEffects": [
|
|
39
|
+
"**/*.css"
|
|
40
|
+
],
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^19.2.4",
|
|
43
|
+
"react-dom": "^19.2.4"
|
|
44
|
+
}
|
|
45
|
+
}
|