-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
{
"name": "@jaw52/transform-jsx-for-vite",
"type": "module",
"version": "1.8.1",
"packageManager": "[email protected]",
"description": "transform js to jsx for vite",
"author": "jaw52",
"license": "MIT",
"homepage": "https://github.com/jaw52/transform-jsx-for-vite#readme",
"bugs": "https://github.com/jaw52/transform-jsx-for-vite/issues",
"keywords": [
"vite",
"react",
"cli"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"transform-jsx": "bin/transform-jsx.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "esno src/index.ts",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@babel/parser": "^7.21.2",
"@babel/traverse": "^7.21.2",
"cac": "^6.7.14",
"consola": "^2.15.3",
"execa": "^7.0.0",
"fast-glob": "^3.2.12",
"is-html": "^3.0.0",
"kolorist": "^1.7.0",
"ora": "^6.1.2",
"p-limit": "^4.0.0",
"prompts": "^2.4.2",
"slash": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@antfu/ni": "^0.20.0",
"@types/babel__traverse": "^7.18.3",
"@types/node": "^18.14.1",
"@types/prompts": "^2.4.2",
"bumpp": "^8.2.1",
"eslint": "^8.34.0",
"esno": "^0.16.3",
"typescript": "^4.9.5",
"unbuild": "^1.1.2"
},
"publishConfig": {
"access": "public"
}
}