@putkoff/abstract-utilities 0.1.197 → 0.1.199

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