-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.34 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "unplugin-jsx-string",
"version": "0.9.1",
"packageManager": "[email protected]",
"description": "Converts JSX to HTML strings at compile time.",
"type": "module",
"keywords": [
"unplugin",
"jsx",
"tsx",
"string",
"html",
"convert",
"react"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-jsx-string#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-jsx-string/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-jsx-string.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./esbuild": "./dist/esbuild.js",
"./rollup": "./dist/rollup.js",
"./rolldown": "./dist/rolldown.js",
"./webpack": "./dist/webpack.js",
"./rspack": "./dist/rspack.js",
"./vite": "./dist/vite.js",
"./api": "./dist/api.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "pnpm run -C playground dev",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"benchmark": "node benchmark/index.js",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/parser": "^7.26.9",
"@babel/types": "^7.26.9",
"entities": "^6.0.0",
"estree-walker": "^3.0.3",
"jsesc": "^3.1.0",
"magic-string": "^0.30.17",
"unplugin": "^2.2.0",
"unplugin-utils": "^0.2.4"
},
"devDependencies": {
"@sxzz/eslint-config": "^6.1.2",
"@sxzz/prettier-config": "^2.2.1",
"@types/benchmark": "^2.1.5",
"@types/jsesc": "^3.0.3",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"benchmark": "^2.1.4",
"bumpp": "^10.0.3",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"tsdown": "^0.6.4",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}