-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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": "vite-plugin-dts-bundle-generator",
"version": "2.0.6",
"description": "DTS bundle generator for Vite",
"keywords": [
"vite-plugin",
"dts",
"bundle",
"typescript"
],
"repository": "https://github.com/f-lawe/vite-plugin-dts-bundle-generator",
"license": "MIT",
"author": "François Lavaud-Wernert <[email protected]>",
"exports": {
".": {
"import": "./dist/dts-bundle-generator.mjs",
"types": "./dist/dts-bundle-generator.d.ts"
}
},
"module": "dist/dts-bundle-generator.mjs",
"source": "src/index.mts",
"types": "dist/dts-bundle-generator.d.ts",
"scripts": {
"analyse": "tsc --noEmit",
"build": "vite build",
"clean": "rimraf dist",
"lint": "eslint . --fix --flag unstable_ts_config --config eslint.config.mts && sort-package-json",
"prepack": "npm run clean && npm run build",
"watch": "vite build --watch"
},
"dependencies": {
"dts-bundle-generator": "^9.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"jiti": "^2.3.3",
"rimraf": "^6.0.1",
"sort-package-json": "^2.4.1",
"typescript": "^5.0.2",
"vite": "^5.0.12 || ^6.0.0"
},
"peerDependencies": {
"vite": "^5.0.12 || ^6.0.0"
}
}