@kuroson/cse-common-website 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/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@kuroson/cse-common-website",
3
+ "version": "0.1.0",
4
+ "description": "Common website components for UNSW CSE courses",
5
+ "author": "Alvin Cherk <a.cherk@unsw.edu.au>",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ },
22
+ "./styles.css": "./dist/styles.css",
23
+ "./package.json": "./package.json"
24
+ },
25
+ "dependencies": {},
26
+ "devDependencies": {
27
+ "@eslint/js": "9.39.2",
28
+ "@tailwindcss/postcss": "^4.0.0",
29
+ "@types/node": "24.10.4",
30
+ "@types/react": "19.2.7",
31
+ "@typescript-eslint/eslint-plugin": "8.50.0",
32
+ "depcheck": "1.4.7",
33
+ "eslint": "9.39.2",
34
+ "eslint-config-prettier": "10.1.8",
35
+ "eslint-plugin-prettier": "5.5.4",
36
+ "eslint-plugin-unused-imports": "4.3.0",
37
+ "postcss": "^8.4.47",
38
+ "postcss-cli": "^11.0.0",
39
+ "prettier": "3.7.4",
40
+ "tsup": "8.5.1",
41
+ "typescript": "5.9.3",
42
+ "typescript-eslint": "8.50.0"
43
+ },
44
+ "peerDependencies": {
45
+ "react": ">=19.0.0",
46
+ "react-dom": ">=19.0.0",
47
+ "tailwindcss": ">=4.0.0",
48
+ "typescript": ">=5.0.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "typescript": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "depcheck": {
59
+ "ignores": [
60
+ "@tailwindcss/postcss"
61
+ ],
62
+ "skip-missing": true
63
+ },
64
+ "engines": {
65
+ "node": ">=22"
66
+ },
67
+ "files": [
68
+ "dist",
69
+ "package.json",
70
+ "README.md",
71
+ "LICENSE",
72
+ "CHANGELOG.md"
73
+ ],
74
+ "scripts": {
75
+ "build": "postcss src/styles.css -o dist/styles.css",
76
+ "build:all": "tsup && postcss src/styles.css -o dist/styles.css",
77
+ "depcheck": "depcheck",
78
+ "lint": "eslint './**/*.{ts,js,tsx}'",
79
+ "lint:fix": "eslint './**/*.{ts,js,tsx}' --fix",
80
+ "typecheck": "tsc --noEmit"
81
+ }
82
+ }