mirror of
https://github.com/enso-org/enso.git
synced 2024-12-26 06:11:42 +03:00
d9972d547a
Fixes #10197 # Important Notes From now on, package installation will be using `pnpm install`. Installing it globally is fine for convenience, but it can also be used as `corepack pnpm install` without having to install anything other than node. For now, all other scripts are still invoked using `npm`, so we can still invoke them with usual `--workspace` setting. As far as I can tell that doesn't really have any other side effects and is identical as running the script through `pnpm run` in respective workspace project subdirectory.
24 lines
501 B
JSON
24 lines
501 B
JSON
{
|
|
"name": "enso-content-config",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"homepage": "https://github.com/enso-org/enso",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:enso-org/enso.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/enso-org/enso/issues"
|
|
},
|
|
"dependencies": {
|
|
"@types/semver": "^7.5.8",
|
|
"semver": "^7.6.2",
|
|
"enso-runner": "workspace:*"
|
|
}
|
|
}
|