2022-02-24 12:15:13 +08:00
|
|
|
{
|
|
|
|
|
"name": "@ice/runtime",
|
2025-03-12 11:26:07 +08:00
|
|
|
"version": "1.5.2",
|
2023-02-10 10:17:52 +08:00
|
|
|
"description": "Runtime module for ice.js",
|
2022-03-01 16:12:27 +08:00
|
|
|
"type": "module",
|
2022-03-03 15:58:29 +08:00
|
|
|
"types": "./esm/index.d.ts",
|
2022-03-01 16:12:27 +08:00
|
|
|
"main": "./esm/index.js",
|
2022-04-29 14:21:53 +08:00
|
|
|
"exports": {
|
|
|
|
|
".": "./esm/index.js",
|
|
|
|
|
"./client": "./esm/index.js",
|
2022-06-13 15:06:25 +08:00
|
|
|
"./server": "./esm/index.server.js",
|
2022-06-16 14:51:50 +08:00
|
|
|
"./jsx-runtime": "./esm/jsx-runtime.js",
|
2022-07-11 12:18:24 +08:00
|
|
|
"./jsx-dev-runtime": "./esm/jsx-dev-runtime.js",
|
2022-08-25 16:54:30 +08:00
|
|
|
"./matchRoutes": "./esm/matchRoutes.js",
|
|
|
|
|
"./router": "./esm/router.js",
|
2023-04-13 12:01:16 +08:00
|
|
|
"./single-router": "./esm/singleRouter.js",
|
2022-11-01 16:54:09 +08:00
|
|
|
"./types": "./esm/types.js",
|
2023-05-25 19:04:03 +08:00
|
|
|
"./package.json": "./package.json",
|
2023-06-07 11:26:01 +08:00
|
|
|
"./polyfills/signal": "./esm/polyfills/signal.js",
|
2023-10-11 13:40:07 +08:00
|
|
|
"./polyfills/abortcontroller": "./esm/polyfills/abortcontroller.js",
|
|
|
|
|
"./react": "./esm/react.js",
|
|
|
|
|
"./react/jsx-runtime": "./esm/jsx-runtime.js",
|
2024-03-19 14:04:12 +08:00
|
|
|
"./react/jsx-dev-runtime": "./esm/jsx-dev-runtime.js",
|
2024-04-02 16:25:08 +08:00
|
|
|
"./data-loader": "./esm/dataLoader.js",
|
|
|
|
|
"./document": "./esm/Document.js"
|
2022-04-29 14:21:53 +08:00
|
|
|
},
|
2022-03-01 16:12:27 +08:00
|
|
|
"files": [
|
2022-05-07 13:10:42 +08:00
|
|
|
"esm",
|
2022-12-19 11:40:52 +08:00
|
|
|
"!esm/**/*.map",
|
2023-02-28 15:08:10 +08:00
|
|
|
"templates",
|
2023-04-14 11:04:53 +08:00
|
|
|
"*.d.ts",
|
|
|
|
|
"scripts"
|
2022-03-01 16:12:27 +08:00
|
|
|
],
|
2022-02-24 12:15:13 +08:00
|
|
|
"author": "ICE",
|
|
|
|
|
"license": "MIT",
|
2022-11-24 19:11:13 +08:00
|
|
|
"repository": "alibaba/ice",
|
|
|
|
|
"bugs": "https://github.com/alibaba/ice/issues",
|
|
|
|
|
"homepage": "https://v3.ice.work",
|
2022-06-13 15:59:11 +08:00
|
|
|
"scripts": {
|
2023-09-06 10:09:59 +08:00
|
|
|
"watch": "tsc -w --sourceMap",
|
2023-04-14 11:04:53 +08:00
|
|
|
"build": "tsc",
|
|
|
|
|
"postinstall": "node ./scripts/postinstall.mjs"
|
2022-06-13 15:59:11 +08:00
|
|
|
},
|
2022-02-24 12:15:13 +08:00
|
|
|
"devDependencies": {
|
2022-09-23 11:11:38 +08:00
|
|
|
"@types/react": "^18.0.8",
|
|
|
|
|
"@types/react-dom": "^18.0.3",
|
2022-12-19 11:40:52 +08:00
|
|
|
"react": "^18.0.0",
|
|
|
|
|
"react-dom": "^18.0.0",
|
2023-04-13 12:01:16 +08:00
|
|
|
"regenerator-runtime": "^0.13.9",
|
|
|
|
|
"@remix-run/web-fetch": "^4.3.3"
|
2022-03-01 10:40:46 +08:00
|
|
|
},
|
2023-05-30 13:50:42 +08:00
|
|
|
"sideEffects": [
|
2023-06-07 11:26:01 +08:00
|
|
|
"./esm/polyfills/signal.js",
|
|
|
|
|
"./esm/polyfills/abortcontroller.js"
|
2023-05-30 13:50:42 +08:00
|
|
|
],
|
2022-03-01 16:12:27 +08:00
|
|
|
"dependencies": {
|
2024-11-25 13:59:33 +08:00
|
|
|
"@ice/jsx-runtime": "^0.3.1",
|
2024-11-18 11:59:10 +08:00
|
|
|
"@ice/shared": "^1.1.0",
|
2024-01-31 16:40:43 +08:00
|
|
|
"@remix-run/router": "1.14.2",
|
2023-06-07 11:26:01 +08:00
|
|
|
"abortcontroller-polyfill": "1.7.5",
|
2022-03-22 17:23:04 +08:00
|
|
|
"history": "^5.3.0",
|
2024-01-31 16:40:43 +08:00
|
|
|
"react-router-dom": "6.21.3",
|
2024-04-02 16:25:08 +08:00
|
|
|
"semver": "^7.4.0"
|
2022-06-09 15:11:27 +08:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"react": "^18.1.0",
|
|
|
|
|
"react-dom": "^18.1.0"
|
2023-02-13 14:48:34 +08:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
2022-03-01 16:12:27 +08:00
|
|
|
}
|
2022-06-13 15:06:25 +08:00
|
|
|
}
|