-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.99 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@nipe-solutions/react-data-inspector",
"version": "0.1.0-beta.0",
"description": "A structured JavaScript data inspector for React.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NIPE-Solutions/react-data-inspector"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./styles.css": "./dist/styles.css",
"./package.json": "./package.json"
},
"peerDependencies": {
"react": "^18.3.0 || ^19.0.0",
"react-dom": "^18.3.0 || ^19.0.0"
},
"publishConfig": {
"access": "public",
"tag": "beta",
"provenance": true
},
"scripts": {
"dev": "vite --config website/vite.config.ts",
"build": "vite build && dts-bundle-generator --project tsconfig.build.json --no-banner -o dist/index.d.ts src/index.ts && node scripts/copy-css.mjs",
"build:website": "node scripts/build-website.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:package": "node scripts/verify-package.mjs",
"benchmark": "tsx benchmarks/run.ts",
"check": "npm run format:check && npm run typecheck && npm test && npm run build && npm run build:website && npm run test:website && npm run test:package",
"benchmark:memory": "node --expose-gc --import tsx benchmarks/memory.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"benchmark:browser": "node benchmarks/browser.mjs",
"build:website:profile": "vite build --config website/vite.config.ts --mode profiling",
"preview:website": "vite preview --config website/vite.config.ts --host 127.0.0.1 --port 5173 --strictPort",
"test:website": "node scripts/verify-website.mjs"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"dts-bundle-generator": "9.5.1",
"jsdom": "^27.0.0",
"marked": "^18.0.11",
"prettier": "3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tsx": "^4.20.0",
"typescript": "~6.0.3",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"overrides": {
"@axe-core/playwright": {
"playwright-core": "1.58.2"
}
},
"types": "./dist/index.d.ts",
"homepage": "https://react-data-inspector.nipesolutions.com",
"keywords": [
"react",
"typescript",
"json",
"json-viewer",
"json-inspector",
"json-tree",
"data-inspector",
"object-inspector",
"tree-view",
"developer-tools",
"debugging",
"react-component"
]
}