-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "easydoc",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"easydoc": "bin/digit_doc.js"
},
"scripts": {
"lint": "npx eslint \"src/**/*.{ts,tsx}\" --fix",
"compile": "tsup --watch",
"dev": "bin/digit_doc.js",
"build": "easydoc build docs",
"serve": "cd docs && cd build && serve .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.5",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"commitlint": "^19.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"serve": "^14.2.4",
"tsup": "^8.3.5",
"typescript": "^5.5.3"
},
"private": true,
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/react": "^18.3.12",
"@vitejs/plugin-react": "^4.3.3",
"cac": "^6.7.14",
"fs-extra": "^11.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.4.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}