ice/packages/plugin-jsx-plus/package.json

57 lines
1.4 KiB
JSON
Raw Permalink Normal View History

{
"name": "@ice/plugin-jsx-plus",
2023-09-14 10:58:37 +08:00
"version": "1.0.3",
"description": "JSX Plus support for ice.js",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js",
"default": "./esm/index.js"
},
"./types": {
"types": "./esm/types.d.ts",
"import": "./esm/types.js",
"default": "./esm/types.js"
},
"./esm/types": {
"types": "./esm/types.d.ts",
"import": "./esm/types.js",
"default": "./esm/types.js"
}
},
"main": "./esm/index.js",
"types": "./esm/index.d.ts",
"files": [
"esm",
"!esm/**/*.map"
],
"devDependencies": {
2023-09-14 10:58:37 +08:00
"@ice/app": "^3.3.2",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6"
},
"repository": {
"type": "http",
"url": "https://github.com/alibaba/ice/tree/master/packages/plugin-jsx-plus"
},
"scripts": {
"watch": "tsc -w --sourceMap",
"build": "tsc"
},
"dependencies": {
"@babel/core": "^7.19.1",
"babel-plugin-transform-jsx-class": "^0.1.3",
"babel-plugin-transform-jsx-condition": "^0.1.3",
"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",
"babel-runtime-jsx-plus": "^0.1.5"
},
"publishConfig": {
"access": "public"
}
}