-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "techbase",
"version": "1.0.0",
"type": "module",
"description": "",
"scripts": {
"prepare": "husky",
"build": "tsx scripts/build",
"test": "tsx scripts/test",
"lint": "eslint && prettier -w packages",
"lint:fix": "eslint --fix && prettier -w packages",
"prettier": "prettier --write **/*.{ts,js,tsx}"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "20.14.9",
"@types/yargs": "^17.0.32",
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^9.4.0",
"eslint-config-unjs": "^0.3.2",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-banner2": "^1.3.0",
"rollup-plugin-esbuild": "^6.1.1",
"tsx": "^4.15.7",
"typedoc": "^0.26.5",
"vite": "^5.2.12",
"vitest": "^1.6.0",
"yargs": "^17.7.2"
},
"dependencies": {
"typescript": "^5.5.2",
"yup": "^1.4.0"
}
}