@authdog/react-elements 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/dist/index.d.ts +5 -0
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +36 -0
package/dist/index.d.ts
ADDED
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/navigation/index.tsx"],"sourcesContent":["// import React from 'react';\nexport const Navbar = () => {\n return (\n <div style={{ backgroundColor: 'blue', padding: '10px', color: 'white' }}>\n ACME\n </div>\n )\n}"],"mappings":"AAGQ,cAAAA,MAAA,oBAFD,IAAMC,EAAS,IAEdD,EAAC,OAAI,MAAO,CAAE,gBAAiB,OAAQ,QAAS,OAAQ,MAAO,OAAQ,EAAG,gBAE1E","names":["jsx","Navbar"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@authdog/react-elements",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Authdog React Elements",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"main": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.mts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"import": "./dist/index.mjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"registry": "https://registry.npmjs.org/",
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"react": "^18.2.0",
|
|
24
|
+
"@authdog/node-commons": "0.0.19"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/react": "^18.2.0"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"format": "prettier --config .prettierrc.json --write \"**/*.{ts,md}\"",
|
|
31
|
+
"type-check": "tsc",
|
|
32
|
+
"clean": "rm -rf dist",
|
|
33
|
+
"build": "pnpm clean && tsup",
|
|
34
|
+
"ship": "pnpm build && pnpm publish --access public --no-git-checks"
|
|
35
|
+
}
|
|
36
|
+
}
|