-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.41 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
{
"name": "modern-json-react",
"version": "1.2.0",
"description": "A production-grade, fully-featured JSON editor React component with tree view, code editing, JSON Schema validation, and accessibility-first design.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite serve demo",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ --ext .ts,.tsx",
"lint:fix": "eslint src/ --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"validate": "npm run typecheck && npm run lint && npm test && npm run build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^4.1.0"
},
"keywords": [
"json",
"editor",
"react",
"json-editor",
"tree-view",
"json-schema",
"validation",
"typescript",
"accessible"
],
"author": "Dileep Pandey",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dileeppandey/modern-json-react.git"
},
"bugs": {
"url": "https://github.com/dileeppandey/modern-json-react/issues"
},
"homepage": "https://github.com/dileeppandey/modern-json-react#readme"
}