mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 11:51:31 +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.
64 lines
2.6 KiB
JSON
64 lines
2.6 KiB
JSON
{
|
|
"version": "0.0.0-dev",
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"homepage": "https://github.com/enso-org/ide",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:enso-org/ide.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/enso-org/ide/issues"
|
|
},
|
|
"name": "enso",
|
|
"description": "Enso Data Processing Environment.",
|
|
"main": "index.cjs",
|
|
"dependencies": {
|
|
"@types/mime-types": "^2.1.1",
|
|
"@types/opener": "^1.4.0",
|
|
"@types/tar": "^6.1.4",
|
|
"@types/yargs": "^17.0.30",
|
|
"chalk": "^5.2.0",
|
|
"create-servers": "3.2.0",
|
|
"electron-is-dev": "^2.0.0",
|
|
"enso-content-config": "workspace:*",
|
|
"mime-types": "^2.1.35",
|
|
"opener": "^1.5.2",
|
|
"string-length": "^5.0.1",
|
|
"tar": "^6.2.0",
|
|
"yargs": "17.6.2",
|
|
"mkcert": "3.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/notarize": "2.1.0",
|
|
"@types/node": "^20.11.21",
|
|
"electron": "25.7.0",
|
|
"electron-builder": "^24.13.3",
|
|
"enso-common": "workspace:*",
|
|
"enso-runner": "workspace:*",
|
|
"enso-gui2": "workspace:*",
|
|
"esbuild": "^0.19.3",
|
|
"esbuild-plugin-yaml": "^0.0.1",
|
|
"fast-glob": "^3.2.12",
|
|
"lightningcss": "^1.24.0",
|
|
"portfinder": "^1.0.32",
|
|
"sharp": "^0.31.2",
|
|
"to-ico": "^1.1.5",
|
|
"tsx": "^4.7.1",
|
|
"vite": "^5.3.3"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "npm run --workspace=enso-gui2 compile-server && tsc --build",
|
|
"start": "tsx start.ts",
|
|
"build": "tsx bundle.ts",
|
|
"dist": "tsx dist.ts",
|
|
"watch": "tsx watch.ts",
|
|
"watch:windows": "cross-env ENSO_BUILD_IDE=%LOCALAPPDATA%/Temp/enso/dist/ide ENSO_BUILD_PROJECT_MANAGER=%CD%/../../../../dist/backend ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH=bin/project-manager.exe ENSO_BUILD_IDE_BUNDLED_ENGINE_VERSION=0 tsx watch.ts",
|
|
"watch:linux": "ENSO_BUILD_IDE=\"${ENSO_BUILD_IDE:-/tmp/enso/dist/ide}\" ENSO_BUILD_PROJECT_MANAGER=\"${ENSO_BUILD_PROJECT_MANAGER:-\"$(pwd)/../../../../dist/backend\"}\" ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH=\"${ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH:-bin/project-manager}\" ENSO_BUILD_IDE_BUNDLED_ENGINE_VERSION=\"${ENSO_BUILD_IDE_BUNDLED_ENGINE_VERSION:-0}\" tsx watch.ts \"$@\"",
|
|
"watch:macos": "ENSO_BUILD_IDE=\"${ENSO_BUILD_IDE:-/tmp/enso/dist/ide}\" ENSO_BUILD_PROJECT_MANAGER=\"${ENSO_BUILD_PROJECT_MANAGER:-\"$(pwd)/../../../../dist/backend\"}\" ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH=\"${ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH:-bin/project-manager}\" ENSO_BUILD_IDE_BUNDLED_ENGINE_VERSION=\"${ENSO_BUILD_IDE_BUNDLED_ENGINE_VERSION:-0}\" tsx watch.ts \"$@\""
|
|
}
|
|
}
|