mirror of
https://github.com/enso-org/enso.git
synced 2025-01-03 06:56:20 +03:00
37d820c764
- Fixes #6168 - Removes `enso-copy-plugin` in favor of an inline plugin - It was only used in one place anyway - It is probably necessary since I've "fixed" it by adding all files as entrypoints (I'm not quite sure why it wasn't working with the fix with `enso-copy-plugin`...) - Adds live reload (back) to `content/` # Important Notes To QA: Mandatory: - `./run gui watch --skip-version-check --skip-wasm-opt` Recommended: - `npm run watch-dashboard` - `./run ide watch --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - and with `--ide-option -authentication` - `./run ide build --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - `Enso` and `Enso -authentication`
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "enso-content",
|
|
"version": "1.0.0",
|
|
"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"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npx --yes eslint src",
|
|
"build": "tsx bundle.ts",
|
|
"watch": "tsx watch.ts",
|
|
"start": "tsx start.ts"
|
|
},
|
|
"dependencies": {
|
|
"@types/semver": "^7.3.9",
|
|
"enso-content-config": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
|
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
"@eslint/js": "^8.36.0",
|
|
"@types/connect": "^3.4.35",
|
|
"@types/morgan": "^1.9.4",
|
|
"@types/serve-static": "^1.15.1",
|
|
"@types/sharp": "^0.31.1",
|
|
"@types/to-ico": "^1.1.1",
|
|
"@types/ws": "^8.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
"@typescript-eslint/parser": "^5.55.0",
|
|
"enso-authentication": "^1.0.0",
|
|
"esbuild": "^0.17.15",
|
|
"esbuild-plugin-alias": "^0.2.1",
|
|
"esbuild-plugin-copy-directories": "^1.0.0",
|
|
"esbuild-plugin-time": "^1.0.0",
|
|
"esbuild-plugin-yaml": "^0.0.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-plugin-jsdoc": "^40.0.2",
|
|
"globals": "^13.20.0",
|
|
"portfinder": "^1.0.32",
|
|
"tsx": "^3.12.6",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
}
|
|
}
|