@putkoff/abstract-utilities 0.0.5 → 0.0.7

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.
Files changed (1) hide show
  1. package/package.json +77 -1
package/package.json CHANGED
@@ -1 +1,77 @@
1
- {"name":"@putkoff/abstract-utilities","version":"0.0.005","type":"module","description":"A reusable React Login component with JWT authentication","main":"dist/cjs/index.js","module":"dist/esm/index.js","types":"dist/index.d.ts","scripts":{"build":"tsc --emitDeclarationOnly && rollup -c","test":"jest","prepublishOnly":"npm run build"},"keywords":["react","login","component","jwt","authentication"],"author":"Your Name","license":"MIT","peerDependencies":{"react":"^17.0.0 || ^18.0.0","react-dom":"^17.0.0 || ^18.0.0"},"devDependencies":{"@rollup/plugin-commonjs":"^25.0.7","@rollup/plugin-node-resolve":"^15.2.3","@rollup/plugin-typescript":"^11.1.5","@testing-library/jest-dom":"^6.4.2","@testing-library/react":"^14.2.1","@types/jest":"^29.5.12","@types/react":"^18.2.55","@types/react-dom":"^18.2.19","jest":"^29.7.0","postcss":"^8.5.6","rollup":"^4.12.0","rollup-plugin-dts":"^6.1.0","rollup-plugin-peer-deps-external":"^2.2.4","rollup-plugin-postcss":"^4.0.2","ts-jest":"^29.1.2","typescript":"^5.3.3"},"compilerOptions":{"target":"es2016","module":"esnext","esModuleInterop":true,"forceConsistentCasingInFileNames":true,"strict":true,"skipLibCheck":true,"jsx":"react-jsx","declaration":true,"declarationDir":"dist","outDir":"dist","moduleResolution":"node","allowSyntheticDefaultImports":true,"types":"dist/types/index.d.ts","allowImportingTsExtensions":true},"include":["src/**/*"],"exclude":["node_modules","dist"],"files":["dist/","src/components/Login/login_style.css","src/components/ChangePassword/change_password.css"],"dependencies":{"@putkoff/abstract_utilities":"^0.0.1","path-browserify":"^1.0.1"}}
1
+ {
2
+ "name": "@putkoff/abstract-utilities",
3
+ "version": "0.0.7",
4
+ "type": "module",
5
+ "description": "A reusable React Login component with JWT authentication",
6
+ "main": "dist/cjs/index.js",
7
+ "module": "dist/esm/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "scripts": {
10
+ "build": "tsc --emitDeclarationOnly && rollup -c",
11
+ "test": "jest",
12
+ "prepublishOnly": "npm run build"
13
+ },
14
+ "keywords": [
15
+ "react",
16
+ "login",
17
+ "component",
18
+ "jwt",
19
+ "authentication"
20
+ ],
21
+ "author": "Your Name",
22
+ "license": "MIT",
23
+ "peerDependencies": {
24
+ "react": "^17.0.0 || ^18.0.0",
25
+ "react-dom": "^17.0.0 || ^18.0.0"
26
+ },
27
+ "devDependencies": {
28
+ "@rollup/plugin-commonjs": "^25.0.7",
29
+ "@rollup/plugin-node-resolve": "^15.2.3",
30
+ "@rollup/plugin-typescript": "^11.1.5",
31
+ "@testing-library/jest-dom": "^6.4.2",
32
+ "@testing-library/react": "^14.2.1",
33
+ "@types/jest": "^29.5.12",
34
+ "@types/react": "^18.2.55",
35
+ "@types/react-dom": "^18.2.19",
36
+ "jest": "^29.7.0",
37
+ "postcss": "^8.5.6",
38
+ "rollup": "^4.12.0",
39
+ "rollup-plugin-dts": "^6.1.0",
40
+ "rollup-plugin-peer-deps-external": "^2.2.4",
41
+ "rollup-plugin-postcss": "^4.0.2",
42
+ "ts-jest": "^29.1.2",
43
+ "typescript": "^5.3.3"
44
+ },
45
+ "compilerOptions": {
46
+ "target": "es2016",
47
+ "module": "esnext",
48
+ "esModuleInterop": true,
49
+ "forceConsistentCasingInFileNames": true,
50
+ "strict": true,
51
+ "skipLibCheck": true,
52
+ "jsx": "react-jsx",
53
+ "declaration": true,
54
+ "declarationDir": "dist",
55
+ "outDir": "dist",
56
+ "moduleResolution": "node",
57
+ "allowSyntheticDefaultImports": true,
58
+ "types": "dist/types/index.d.ts",
59
+ "allowImportingTsExtensions": true
60
+ },
61
+ "include": [
62
+ "src/**/*"
63
+ ],
64
+ "exclude": [
65
+ "node_modules",
66
+ "dist"
67
+ ],
68
+ "files": [
69
+ "dist/",
70
+ "src/components/Login/login_style.css",
71
+ "src/components/ChangePassword/change_password.css"
72
+ ],
73
+ "dependencies": {
74
+ "@putkoff/abstract_utilities": "^0.0.1",
75
+ "path-browserify": "^1.0.1"
76
+ }
77
+ }