2022-06-02 15:36:16 +08:00
|
|
|
{
|
|
|
|
|
"name": "@ice/plugin-rax-compat",
|
2024-06-26 10:28:56 +08:00
|
|
|
"version": "0.3.2",
|
2023-01-12 12:04:06 +08:00
|
|
|
"description": "Provide rax compat support for ice.js",
|
2022-06-02 15:36:16 +08:00
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"import": "./esm/index.js",
|
|
|
|
|
"default": "./esm/index.js"
|
2023-01-12 12:04:06 +08:00
|
|
|
},
|
|
|
|
|
"./*": "./*"
|
2022-06-02 15:36:16 +08:00
|
|
|
},
|
|
|
|
|
"main": "./esm/index.js",
|
|
|
|
|
"types": "./esm/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"esm",
|
|
|
|
|
"!esm/**/*.map"
|
|
|
|
|
],
|
2022-06-06 20:01:52 +08:00
|
|
|
"dependencies": {
|
2022-09-16 10:58:10 +08:00
|
|
|
"@babel/core": "^7.0.0",
|
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.18.9",
|
2024-01-18 14:44:38 +08:00
|
|
|
"@ice/bundles": "^0.2.2",
|
2022-09-16 10:58:10 +08:00
|
|
|
"babel-plugin-transform-jsx-stylesheet": "1.0.6",
|
2022-06-20 15:28:01 +08:00
|
|
|
"consola": "^2.15.3",
|
2022-09-16 10:58:10 +08:00
|
|
|
"css": "^2.2.1",
|
2023-07-05 14:08:50 +08:00
|
|
|
"lodash-es": "^4.17.21",
|
2024-06-26 10:28:56 +08:00
|
|
|
"rax-compat": "^0.3.0",
|
2023-01-12 12:04:06 +08:00
|
|
|
"style-unit": "^3.0.5",
|
2022-06-20 15:28:01 +08:00
|
|
|
"stylesheet-loader": "^0.9.1"
|
2022-06-06 20:01:52 +08:00
|
|
|
},
|
2022-06-02 15:36:16 +08:00
|
|
|
"devDependencies": {
|
2024-06-26 10:28:56 +08:00
|
|
|
"@ice/app": "^3.4.10",
|
2023-07-05 14:08:50 +08:00
|
|
|
"@types/lodash-es": "^4.17.7",
|
2023-08-21 16:26:00 +08:00
|
|
|
"webpack": "^5.88.0"
|
2022-06-02 15:36:16 +08:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "http",
|
2022-11-24 19:11:13 +08:00
|
|
|
"url": "https://github.com/alibaba/ice/tree/master/packages/plugin-rax-compat"
|
2022-06-13 15:59:11 +08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-09-06 10:09:59 +08:00
|
|
|
"watch": "tsc -w --sourceMap",
|
2024-01-02 15:23:21 +08:00
|
|
|
"copy": "cp -R src/templates esm/templates",
|
|
|
|
|
"build": "tsc && npm run copy"
|
2023-02-13 14:48:34 +08:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
2022-06-02 15:36:16 +08:00
|
|
|
}
|
2023-10-12 15:35:25 +08:00
|
|
|
}
|