generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1014 Bytes
/
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-compile-time",
"version": "0.2.1",
"description": "Do some compile time work in your Vite project",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"/client.d.ts"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast --dts-resolve",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"prettier": "3.0.1",
"sucrase": "3.34.0",
"tsup": "7.2.0",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "0.34.1"
},
"dependencies": {
"bundle-require": "^4.0.1",
"devalue": "^4.3.2",
"esbuild": "^0.19.1",
"magic-string": "^0.30.2"
},
"peerDependencies": {
"vite": ">=2"
}
}