-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "react-log-window",
"version": "0.0.1",
"description": "A simple log window component for user-facing log messages in ReactJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start:examples": "cd demo-app && npm run dev",
"build:examples": "cd demo-app && npm run build",
"build": "tsc && mkdir -p dist/styles && cp src/styles/components.css dist/styles/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shieldine/react-log-window.git"
},
"keywords": [
"react",
"logging",
"log-window",
"log",
"logger"
],
"author": "Agnes Widera",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shieldine/react-log-window/issues"
},
"homepage": "https://github.com/Shieldine/react-log-window#readme",
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}