-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "uay-react-tailwind-gantt",
"version": "1.0.0",
"description": "Gantt chart for React Tailwind and TypeScript based on MaTeMaTuK/gantt-task-react.",
"author": "uay",
"homepage": "https://github.com/uay/uay-react-tailwind-gantt",
"license": "MIT",
"repository": "uay/uay-react-tailwind-gantt",
"main": "dist/index.cjs.jsx",
"module": "dist/index.esm.jsx",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"engines": {
"node": ">=18"
},
"keywords": [
"react",
"gantt",
"tailwind",
"typescript",
"chart",
"svg",
"gantt-chart",
"gantt chart",
"react-gantt",
"task"
],
"scripts": {
"build": "run-s clean build:*",
"build:rollup": "rollup -c",
"clean": "run-s clean:*",
"clean:dist": "rm -rf dist",
"dev": "run-s dev:*",
"dev:build": "run-s build",
"dev:watch": "rollup -c --watch",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,json}\"",
"format:ci": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,json}\"",
"lint": "eslint --fix .",
"lint:ci": "eslint --quiet .",
"prepare": "run-s build"
},
"peerDependencies": {
"react": ">=18.0.0 <19.0.0",
"react-dom": ">=18.0.0 <19.0.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^18.11.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"files": [
"dist"
]
}