-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.52 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
{
"name": "@cristianmpx/react-import-sheet-headless",
"version": "2.0.0",
"description": "Headless React library for importing and validating Excel/CSV sheet data",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run --coverage",
"test:watch": "vitest",
"build": "tsup --minify",
"lint": "eslint .",
"publish": "npm run test && npm run build && npm publish --access public",
"prepare": "husky",
"commit": "cz",
"verify": "node scripts/verify-package.js",
"diagnose": "node scripts/diagnose-installation.js"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.39.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"fake-indexeddb": "^6.2.5",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"keywords": [
"react",
"import",
"sheet",
"headless",
"csv",
"excel",
"xlsx",
"validation"
],
"author": "Cristian Marin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cristianm-developer/react-import-sheet-headless.git"
},
"bugs": {
"url": "https://github.com/cristianm-developer/react-import-sheet-headless/issues"
},
"homepage": "https://github.com/cristianm-developer/react-import-sheet-headless#readme",
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"js-sha256": "^0.11.1",
"papaparse": "^5.5.3",
"xlsx": "^0.18.5"
}
}