@tern-secure/nextjs 2.0.5 → 2.0.6

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 (2) hide show
  1. package/package.json +15 -10
  2. package/styles/globals.css +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tern-secure/nextjs",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -16,9 +16,10 @@
16
16
  "main": "./dist/index.js",
17
17
  "module": "./dist/index.js",
18
18
  "scripts": {
19
- "build": "tsc",
19
+ "build": "tsc --build",
20
+ "clean": "tsc --build --clean",
20
21
  "dev": "tsc --watch",
21
- "lint": "eslint src --ext .ts,.tsx",
22
+ "lint": "eslint \"src/**/*.{ts,tsx}\"",
22
23
  "format": "prettier --write \"src/**/*.{ts,tsx}\"",
23
24
  "prepublishOnly": "npm run build"
24
25
  },
@@ -28,6 +29,7 @@
28
29
  "description": "",
29
30
  "devDependencies": {
30
31
  "@babel/preset-typescript": "^7.26.0",
32
+ "@eslint/js": "^9.15.0",
31
33
  "@rollup/plugin-commonjs": "^28.0.1",
32
34
  "@rollup/plugin-node-resolve": "^15.3.0",
33
35
  "@rollup/plugin-replace": "^6.0.1",
@@ -42,8 +44,10 @@
42
44
  "@typescript-eslint/parser": "^8.15.0",
43
45
  "autoprefixer": "^10.4.20",
44
46
  "eslint": "^9.15.0",
47
+ "eslint-plugin-react": "^7.37.2",
45
48
  "firebase": "^11.0.2",
46
49
  "firebase-admin": "^13.0.1",
50
+ "globals": "^15.12.0",
47
51
  "husky": "^9.1.7",
48
52
  "jest": "^29.7.0",
49
53
  "jest-environment-jsdom": "^29.7.0",
@@ -58,7 +62,8 @@
58
62
  "tailwindcss": "^3.4.15",
59
63
  "ts-jest": "^29.2.5",
60
64
  "ts-node": "^10.9.2",
61
- "typescript": "^5.7.2"
65
+ "typescript": "^5.7.2",
66
+ "typescript-eslint": "^8.16.0"
62
67
  },
63
68
  "types": "./dist/index.d.ts",
64
69
  "files": [
@@ -72,14 +77,14 @@
72
77
  "react-dom": "^18 || ^19.0.0-0"
73
78
  },
74
79
  "peerDependenciesMeta": {
75
- "tailwindCSS":{
76
- "optional":true
80
+ "tailwindCSS": {
81
+ "optional": true
77
82
  },
78
- "postcss":{
79
- "optional":true
83
+ "postcss": {
84
+ "optional": true
80
85
  },
81
- "autoprefixer":{
82
- "optional":true
86
+ "autoprefixer": {
87
+ "optional": true
83
88
  }
84
89
  },
85
90
  "exports": {
@@ -1,3 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;