enso/package.json
Kaz Wesley 9fd1ab9092
Parser TS bindings (#7881)
Generate TS bindings and lazy deserialization for the parser types.

# Important Notes
- The new API is imported into `ffi.ts`, but not yet used.
- I have tested the generated code in isolation, but cannot commit tests as we are not currently able to load WASM modules when running in `vitest`.
2023-10-11 13:04:38 +00:00

36 lines
909 B
JSON

{
"devDependencies": {
"@playwright/experimental-ct-react": "^1.38.0",
"@playwright/test": "^1.38.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.38.0",
"prettier": "^3.0.0"
},
"dependencies": {
"chromedriver": "^106.0.1",
"enso-gui2": "^0.1.0",
"lint": "^0.8.19",
"run": "^1.4.0",
"tslib": "^2.6.2"
},
"name": "root",
"scripts": {
"format": "prettier --write .",
"prettier": "prettier --check .",
"lint": "npm --workspaces --if-present run lint",
"test": "npm --workspaces --if-present run test",
"typecheck": "npm --workspaces --if-present run typecheck",
"ci-check": "run-p test prettier lint typecheck"
},
"workspaces": [
"app/ide-desktop",
"app/ide-desktop/lib/*",
"app/ide-desktop/lib/dashboard/src/authentication",
"app/gui2",
"lib/rust/ensogl/pack/js"
],
"overrides": {
"tslib": "$tslib"
}
}