-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "vite-plugin-jsx-plus",
"version": "0.1.0",
"description": "Vite plugin that simplifies usage of jsx-plus",
"main": "dist/index.js",
"module": "dist/index.mjs",
"keywords": [
"vite",
"vite-plugin",
"roll-plugin",
"html",
"template"
],
"scripts": {
"start": "npm run build -- --watch",
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"coverage": "codecov"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@iceworks/spec": "^1.4.1",
"eslint": "^7.32.0",
"jest": "^27.1.1",
"rollup": "^2.56.3",
"ts-jest": "^27.0.5",
"tsup": "^4",
"typescript": "^4.4.3",
"vite": "^2.5.6"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"preset": "ts-jest"
},
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-typescript": "^7.15.8",
"@rollup/pluginutils": "^4.1.1",
"babel-plugin-transform-jsx-class": "^0.1.3",
"babel-plugin-transform-jsx-condition": "^0.1.2",
"babel-plugin-transform-jsx-fragment": "^0.1.4",
"babel-plugin-transform-jsx-list": "^0.1.2",
"babel-plugin-transform-jsx-memo": "^0.1.4",
"babel-plugin-transform-jsx-slot": "^0.1.2"
}
}