forked from Berenjenas/react-dev-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.18 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"private": false,
"version": "2.3.0",
"license": "MIT",
"name": "@berenjena/react-dev-panel",
"description": "A React development panel with various tools and utilities.",
"type": "module",
"homepage": "https://github.com/Berenjenas/react-dev-panel",
"bugs": "https://github.com/Berenjenas/react-dev-panel/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Berenjenas/react-dev-panel.git"
},
"keywords": [
"react",
"development",
"panel",
"tools",
"utilities",
"gui",
"devtools"
],
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"contributors": [
{
"name": "David Gallegos",
"email": "admin@berenjena.com.ar",
"url": "https://github.com/dallegos"
},
{
"name": "Emilio Dominguez",
"email": "admin@berenjena.com.ar",
"url": "https://github.com/emiliodominguez"
},
{
"name": "Maximiliano Kucan",
"email": "admin@berenjena.com.ar",
"url": "https://github.com/maxikucan"
}
],
"scripts": {
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"stylelint": "stylelint **/*.scss",
"stylelint:fix": "stylelint **/*.scss --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir docs",
"deploy-storybook": "npm run build-storybook && gh-pages -d docs",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepublishOnly": "vitest run && npm run build",
"changeset": "changeset",
"prerelease": "vitest run && npm run build",
"release": "changeset publish",
"prepare": "npx husky",
"commit": "git-cz"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@eslint/js": "^9.32.0",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-docs": "^9.1.0",
"@storybook/react-vite": "^9.1.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"commitizen": "^4.3.1",
"eslint": "^9.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^9.1.0",
"gh-pages": "^6.3.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sass-embedded": "^1.89.2",
"storybook": "^9.1.0",
"stylelint": "^16.23.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^3.2.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}