2025-01-04 13:57:24 -05:00
|
|
|
{
|
|
|
|
|
"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",
|
2025-04-11 22:49:49 -04:00
|
|
|
"tsc": "tsc",
|
2025-01-04 13:57:24 -05:00
|
|
|
"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",
|
2025-04-07 16:48:48 +00:00
|
|
|
"@codemirror/state": "^6.5.2",
|
2025-01-04 13:57:24 -05:00
|
|
|
"@lezer/highlight": "^1.2.1",
|
|
|
|
|
"typescript": "^5.7.2"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-04-07 16:48:48 +00:00
|
|
|
"@lezer/generator": "^1.7.3",
|
2025-01-04 13:57:24 -05:00
|
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
|
|
|
"rollup": "^4.29.1",
|
|
|
|
|
"rollup-plugin-dts": "^6.1.1",
|
2025-04-07 17:44:10 +00:00
|
|
|
"vite-tsconfig-paths": "^5.1.4",
|
|
|
|
|
"vitest": "^3.1.1"
|
2025-01-04 13:57:24 -05:00
|
|
|
},
|
2025-04-16 00:11:25 +10:00
|
|
|
"files": ["dist/"]
|
2025-01-04 13:57:24 -05:00
|
|
|
}
|