-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.75 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "pipeline-execution-dashboard",
"version": "0.0.0",
"description": "A reusable React dashboard component for presenting platform-neutral pipeline execution status.",
"type": "module",
"license": "MIT",
"author": "apng1982",
"homepage": "https://github.com/cloud-awesome/pipeline-execution-dashboard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-awesome/pipeline-execution-dashboard.git"
},
"bugs": {
"url": "https://github.com/cloud-awesome/pipeline-execution-dashboard/issues"
},
"keywords": [
"react",
"dashboard",
"pipeline",
"execution",
"status",
"typescript"
],
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/index.css"
},
"scripts": {
"build": "tsup",
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"harness": "vite --config harnesses/component-harness/vite.config.ts",
"harness:build": "vite build --config harnesses/component-harness/vite.config.ts",
"harness:preview": "vite preview --config harnesses/component-harness/vite.config.ts",
"lint": "eslint .",
"example:docusaurus": "npm --prefix examples/docusaurus start",
"example:docusaurus:build": "npm run build && npm --prefix examples/docusaurus run build",
"prepack": "npm run clean && npm run lint && npm run typecheck && npm test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.2.0 || >=19.0.0",
"react-dom": ">=18.2.0 || >=19.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^29.1.0",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.0.0",
"tsup": "^8.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.10",
"vitest": "^4.0.0"
},
"dependencies": {
"recharts": "^3.8.1",
"zod": "^4.3.6"
}
}