@kuroson/cse-common-website 0.1.0 → 0.1.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/CHANGELOG.md +16 -0
- package/package.json +17 -17
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @kuroson/cse-common-website
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 61adb1e: Updated dependency `@typescript-eslint/eslint-plugin` to `8.50.1`.
|
|
8
|
+
Updated dependency `@typescript-eslint/parser` to `8.50.1`.
|
|
9
|
+
Updated dependency `typescript-eslint` to `8.50.1`.
|
|
10
|
+
Updated dependency `next` to `16.1.1`.
|
|
11
|
+
Updated dependency `eslint-config-next` to `16.1.1`.
|
|
12
|
+
Updated dependency `@next/third-parties` to `16.1.1`.
|
|
13
|
+
Updated dependency `ldapts` to `8.0.31`.
|
|
14
|
+
Updated dependency `@next/eslint-plugin-next` to `16.1.1`.
|
|
15
|
+
Updated dependency `eslint-plugin-jest` to `29.10.1`.
|
|
16
|
+
Updated dependency `nodemailer` to `7.0.12`.
|
package/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuroson/cse-common-website",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Common website components for UNSW CSE courses",
|
|
5
|
-
"author": "Alvin Cherk <a.cherk@unsw.edu.au>",
|
|
6
5
|
"license": "MIT",
|
|
6
|
+
"author": "Alvin Cherk <a.cherk@unsw.edu.au>",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"main": "./dist/index.cjs",
|
|
9
|
-
"module": "./dist/index.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
8
|
"exports": {
|
|
12
9
|
".": {
|
|
13
10
|
"import": {
|
|
@@ -22,13 +19,23 @@
|
|
|
22
19
|
"./styles.css": "./dist/styles.css",
|
|
23
20
|
"./package.json": "./package.json"
|
|
24
21
|
},
|
|
22
|
+
"main": "./dist/index.cjs",
|
|
23
|
+
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"package.json",
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"CHANGELOG.md"
|
|
31
|
+
],
|
|
25
32
|
"dependencies": {},
|
|
26
33
|
"devDependencies": {
|
|
27
34
|
"@eslint/js": "9.39.2",
|
|
28
35
|
"@tailwindcss/postcss": "^4.0.0",
|
|
29
36
|
"@types/node": "24.10.4",
|
|
30
37
|
"@types/react": "19.2.7",
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "8.50.
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "8.50.1",
|
|
32
39
|
"depcheck": "1.4.7",
|
|
33
40
|
"eslint": "9.39.2",
|
|
34
41
|
"eslint-config-prettier": "10.1.8",
|
|
@@ -39,7 +46,7 @@
|
|
|
39
46
|
"prettier": "3.7.4",
|
|
40
47
|
"tsup": "8.5.1",
|
|
41
48
|
"typescript": "5.9.3",
|
|
42
|
-
"typescript-eslint": "8.50.
|
|
49
|
+
"typescript-eslint": "8.50.1"
|
|
43
50
|
},
|
|
44
51
|
"peerDependencies": {
|
|
45
52
|
"react": ">=19.0.0",
|
|
@@ -52,6 +59,9 @@
|
|
|
52
59
|
"optional": true
|
|
53
60
|
}
|
|
54
61
|
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=22"
|
|
64
|
+
},
|
|
55
65
|
"publishConfig": {
|
|
56
66
|
"access": "public"
|
|
57
67
|
},
|
|
@@ -61,16 +71,6 @@
|
|
|
61
71
|
],
|
|
62
72
|
"skip-missing": true
|
|
63
73
|
},
|
|
64
|
-
"engines": {
|
|
65
|
-
"node": ">=22"
|
|
66
|
-
},
|
|
67
|
-
"files": [
|
|
68
|
-
"dist",
|
|
69
|
-
"package.json",
|
|
70
|
-
"README.md",
|
|
71
|
-
"LICENSE",
|
|
72
|
-
"CHANGELOG.md"
|
|
73
|
-
],
|
|
74
74
|
"scripts": {
|
|
75
75
|
"build": "postcss src/styles.css -o dist/styles.css",
|
|
76
76
|
"build:all": "tsup && postcss src/styles.css -o dist/styles.css",
|