mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2026-08-19 18:43:53 +08:00
33 lines
782 B
JSON
33 lines
782 B
JSON
{
|
|
"name": "@remake/core",
|
|
"type": "module",
|
|
"version": "3.0.0",
|
|
"author": "Vick Scarlet <vick@syaro.io>",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@remake/condition": "workspace:*",
|
|
"@remake/data": "workspace:*",
|
|
"@remake/vitex": "workspace:*",
|
|
"immer": "^11.1.15"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../package.json"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./*": {
|
|
"types": "./src/*.ts",
|
|
"import": "./src/*.ts",
|
|
"default": "./src/*.ts"
|
|
}
|
|
}
|
|
}
|