* WIP: migrate from yarn v1 to npm * Add tsc mapping script * More fixes * Add playwright as script * Fix more * more and more people just want more * Merge branch 'main' into pierremtb/adhoc/npm * use workspaces and fix circular deps Signed-off-by: Jess Frazelle <github@jessfraz.com> * fmt Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * New machine-api types * better lock file Signed-off-by: Jess Frazelle <github@jessfraz.com> * ignore typos in machine-api generated files Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * install from root Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix tsc Signed-off-by: Jess Frazelle <github@jessfraz.com> * New machine-api types * bettter install Signed-off-by: Jess Frazelle <github@jessfraz.com> * bettter install Signed-off-by: Jess Frazelle <github@jessfraz.com> * bettter install Signed-off-by: Jess Frazelle <github@jessfraz.com> * bettter install Signed-off-by: Jess Frazelle <github@jessfraz.com> * bettter install Signed-off-by: Jess Frazelle <github@jessfraz.com> * add comment Signed-off-by: Jess Frazelle <github@jessfraz.com> * add comment Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com> Co-authored-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
39 lines
966 B
JSON
39 lines
966 B
JSON
{
|
|
"name": "@kittycad/codemirror-lang-kcl",
|
|
"version": "1.0.0",
|
|
"description": "Zoo KCL language support for CodeMirror 6.",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"tsc": "tsc",
|
|
"test": "vitest --config vitest.main.config.ts run"
|
|
},
|
|
"type": "module",
|
|
"repository": "https://github.com/KittyCAD/modeling-app",
|
|
"author": "Zoo Engineering Team",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"dependencies": {
|
|
"@codemirror/language": "^6.10.3",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@lezer/highlight": "^1.2.1",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@lezer/generator": "^1.7.3",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"rollup": "^4.29.1",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"vite-tsconfig-paths": "^5.1.4",
|
|
"vitest": "^3.1.1"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
]
|
|
}
|