-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "vite-plugin-tsc-watch",
"description": "Plugs tsc --watch into Vite dev server",
"version": "3.0.2",
"license": "MIT",
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.mts",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.mts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"repository": "github:ArnaudBarre/vite-plugin-tsc-watch",
"keywords": [
"vite",
"vite-plugin",
"tsc",
"typescript"
],
"scripts": {
"build": "rm -rf dist/ && tsc && cp src/*.cjs dist/",
"prettier": "bun prettier-ci --write",
"prettier-ci": "prettier --check '**/*.{ts,json,md,yml}'",
"ci": "bun prettier-ci && bun run build && bun publint"
},
"peerDependencies": {
"typescript": "^4 || ^5",
"vite": "^4 || ^5 || ^6"
},
"devDependencies": {
"@types/node": "^20.17.8",
"publint": "^0.2.12",
"prettier": "3.0.3",
"typescript": "^5.7.2",
"vite": "^6.0.0"
}
}