mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 11:41:30 +03:00
a9dbebf3f3
- Fixes prettier config to include `.tsx` - `prettier -w .` has been run in `app/ide-desktop` - `prettier -w .` has also been run in `pack/js`, however there were no changes. # Important Notes After this is merged, a PR SHOULD be created to add the following file to the root directory: `.git-blame-ignore-revs` ``` # <name of the commit for this PR> <hash of the commit for this PR> ``` This makes `git blame` ignore the commit, which is a good idea since this PR only does formatting changes.
60 lines
1.5 KiB
JSON
60 lines
1.5 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",
|
|
"chalk": "^5.2.0",
|
|
"create-servers": "^3.2.0",
|
|
"electron-is-dev": "^2.0.0",
|
|
"mime-types": "^2.1.35",
|
|
"opener": "^1.5.2",
|
|
"string-length": "^5.0.1",
|
|
"yargs": "17.6.2"
|
|
},
|
|
"comments": {
|
|
"electron-builder": "We cannot update it to never version because of NSIS installer issue: https://github.com/enso-org/enso/issues/5169"
|
|
},
|
|
"devDependencies": {
|
|
"crypto-js": "4.1.1",
|
|
"electron": "23.0.0",
|
|
"electron-builder": "^22.14.13",
|
|
"electron-notarize": "1.2.2",
|
|
"enso-common": "^1.0.0",
|
|
"enso-copy-plugin": "^1.0.0",
|
|
"esbuild": "^0.17.0",
|
|
"fast-glob": "^3.2.12",
|
|
"portfinder": "^1.0.32",
|
|
"tsx": "^3.12.6"
|
|
},
|
|
"optionalDependencies": {
|
|
"dmg-license": "^1.0.11",
|
|
"@esbuild/darwin-x64": "^0.17.0",
|
|
"@esbuild/linux-x64": "^0.17.0",
|
|
"@esbuild/windows-x64": "^0.17.0"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npx --yes eslint src",
|
|
"start": "tsx start.ts",
|
|
"build": "tsx bundle.ts",
|
|
"dist": "tsx dist.ts",
|
|
"watch": "tsx watch.ts"
|
|
}
|
|
}
|