-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "setup-workspace",
"description": "A tool for quick setup and configuration of essential project files.",
"type": "commonjs",
"private": "false",
"scripts": {
"test": "pnpm recursive run test",
"build": "pnpm recursive run build",
"prepare": "husky",
"bench": "pnpm vitest bench"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.9",
"commitlint": "^19.6.0",
"es-toolkit": "^1.27.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-no-for-of-array": "^0.1.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"prettier": "^3.4.0",
"prettier-plugin-sort-re-exports": "^0.1.0",
"rollup": "3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.6"
}
}