-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vite-plugin-typescript-transform",
"description": "Applies the TypeScript compiler during Vite transform build phase.",
"version": "1.3.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "github:herberttn/vite-plugin-typescript-transform"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "unbuild",
"clean": "rimraf --glob dist **/*.eslintcache **/*.tsbuildinfo **/.vite/ **/.vitest/",
"release": "release-it",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"typescript": ">= 4",
"vite": ">= 4"
},
"devDependencies": {
"@release-it/conventional-changelog": "5.1.1",
"@types/node": "14.18.53",
"release-it": "15.11.0",
"rimraf": "5.0.1",
"typescript": "5.1.6",
"unbuild": "1.2.1",
"vite": "4.3.9"
},
"engines": {
"node": "> 14.18"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "herberttn",
"url": "https://github.com/herberttn"
},
"homepage": "https://github.com/herberttn/vite-plugin-typescript-transform",
"bugs": "https://github.com/herberttn/vite-plugin-typescript-transform/issues",
"keywords": [
"code",
"compiler",
"decorators",
"es",
"esm",
"javascript",
"js",
"module",
"node",
"nodejs",
"plugin",
"transform",
"transpile",
"ts",
"tsconfig",
"typescript",
"vite",
"vitejs",
"vitest"
]
}