-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"version": "3.0.0-alpha-10",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"clean": "pnpm -r clean",
"build": "pnpm -r build",
"ci": "npm run eslint && npm run build && npm run test",
"test": "pnpm -r run test",
"test:cov": "pnpm -r run test:cov",
"eslint": "eslint . --fix",
"prerelease": "ts-node scripts/prerelease.ts"
},
"devDependencies": {
"@fansy/eslint-config": "^1.4.2",
"@fansy/prettier-config": "^1.1.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.2.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-strip": "^3.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.1.2",
"@types/node": "^22.8.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"esbuild": "^0.18.11",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"jest": "^29.2.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.2.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^5.0.0",
"rollup": "^2.79.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-output-size": "^1.4.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}