-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "multi-table",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "A powerful multi-dimensional table component for React and Vue",
"scripts": {
"dev": "pnpm --filter @multi-table/docs dev",
"build": "pnpm build:shared && pnpm build:core && pnpm build:vue",
"build:core": "pnpm --filter @multi-table/core build",
"build:vue": "pnpm --filter @multi-table/vue build",
"build:shared": "pnpm --filter @multi-table/shared build",
"build:docs": "pnpm --filter @multi-table/docs build",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"packages/*/src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"packages/**/*.{ts,tsx,vue,json,md,css}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,vue,json,md,css}\"",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"react",
"vue",
"table",
"multi-dimensional",
"spreadsheet",
"grid"
],
"author": "opbr",
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.1"
}
}