-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@rewdy/react-lolcat",
"version": "1.0.1",
"author": "Rewdy Meyer (https://rewdy.lol)",
"type": "module",
"main": "lib/index.umd.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "bun build:lib && bun build:site",
"build:lib": "tsc -b && vite build",
"build:site": "vite build --config vite.config.site.ts",
"clean": "rm -rf dist lib",
"dev": "vite",
"format:check": "biome format .",
"format": "biome format . --write",
"lint:fix": "biome check . --write",
"lint": "biome check .",
"preview": "vite preview"
},
"dependencies": {},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@picocss/pico": "^2.0.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"globals": "^15.12.0",
"lefthook": "^1.9.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^15.6.1",
"sass-embedded": "^1.83.0",
"semantic-release": "^24.2.0",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/rewdy/react-lolcat"
},
"license": "MIT",
"homepage": "https://rewdy.github.io/react-lolcat/",
"keywords": [
"react",
"lolcat",
"component"
]
}