-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 KB
/
package.json
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
{
"name": "sheetsense",
"version": "0.0.8",
"description": "Excel workbook analyzer for quality validation, error detection and formula analysis",
"type": "module",
"main": "./dist/sheetsense.umd.js",
"module": "./dist/sheetsense.es.js",
"browser": "./dist/sheetsense.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/sheetsense.browser.js",
"require": "./dist/sheetsense.node.js",
"default": "./dist/sheetsense.browser.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"publish-all": "npm run build && npm publish --registry https://registry.npmjs.org/ && npm publish --registry http://23.95.140.213:4873/"
},
"keywords": [
"excel",
"spreadsheet",
"analysis",
"validation",
"quality",
"formulas",
"typescript",
"xlsx"
],
"author": "Asadbek Karimov <contact@asadk.dev> (https://asadk.dev)",
"license": "Apache-2.0",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.0.4",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vitest": "^1.0.4"
},
"dependencies": {
"xlsx": "https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz",
"zod": "^3.23.8"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asadbek064/SheetSense.git"
},
"bugs": {
"url": "https://github.com/asadbek064/SheetSense/issues"
},
"homepage": "https://github.com/asadbek064/SheetSense#readme"
}