-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "vite-plugin-config-lib",
"description": "Vite plugin that configures sane defaults for building libraries.",
"version": "0.2.0",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Shakeskeyboarde/vite-plugin-config-lib.git"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "eslint . --max-warnings=0 && vitest run --pass-with-no-tests",
"prepublishOnly": "pnpm build && pnpm test",
"open-coverage": "open out/coverage/index.html"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"packageManager": "[email protected]+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394",
"devDependencies": {
"@types/node": "^20.12.11",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8",
"eslint-config-rational": "^5.0.13",
"rollup-plugin-node-externals": "^7.1.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}