-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "@cloudbeds/webpack-module-federation-types-plugin",
"version": "2.0.9",
"description": "Webpack module federation tools to share types among module-federated apps/components",
"license": "MIT",
"author": "Steven Prybylynskyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/cloudbeds/webpack-module-federation-types-plugin.git"
},
"main": "dist/plugin.js",
"files": [
"dist"
],
"bin": {
"make-federated-types": "dist/bin/make-federated-types.js",
"download-federated-types": "dist/bin/download-federated-types.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "biome check --write --unsafe",
"lint:ts": "tsc --noEmit",
"prepare": "simple-git-hooks",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"download": "^8.0.0",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/download": "^8.0.5",
"@types/minimist": "^1.2.5",
"@types/mkdirp": "^2.0.0",
"@types/node": "^22.7.5",
"@vitest/coverage-istanbul": "^2.1.3",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.2",
"webpack": "^5.95.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint"
}
}