@indusaction/cms-auth 0.1.0
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 +82 -0
- package/dist/index.cjs +558 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +225 -0
- package/dist/index.d.ts +225 -0
- package/dist/index.js +534 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@indusaction/cms-auth",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Shared OTP + cookie JWT authentication for IndusAction CMS web and mobile apps",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Indus-Action-Initiatives/cms-ui-core.git",
|
|
24
|
+
"directory": "packages/auth"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/Indus-Action-Initiatives/cms-ui-core/tree/main/packages/auth",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/Indus-Action-Initiatives/cms-ui-core/issues"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"watch": "tsup --watch",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"clean": "rm -rf dist",
|
|
35
|
+
"prepublishOnly": "npm run build"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"antd": "^5.0.0",
|
|
39
|
+
"axios": "^1.0.0",
|
|
40
|
+
"js-cookie": "^3.0.0",
|
|
41
|
+
"react": ">=17.0.0",
|
|
42
|
+
"react-dom": ">=17.0.0",
|
|
43
|
+
"react-router-dom": ">=6.0.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"react-router-dom": {
|
|
47
|
+
"optional": true
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/js-cookie": "^3.0.6",
|
|
52
|
+
"axios": "^1.7.9",
|
|
53
|
+
"js-cookie": "^3.0.5",
|
|
54
|
+
"react-router-dom": "^6.28.0",
|
|
55
|
+
"tsup": "^8.3.5",
|
|
56
|
+
"typescript": "^5.7.2"
|
|
57
|
+
},
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public",
|
|
60
|
+
"registry": "https://registry.npmjs.org/"
|
|
61
|
+
}
|
|
62
|
+
}
|