* ci: Add yarn test of packages/codemirror-lang-kcl * Fix CI error running tests * Fix postcss config error
38 lines
948 B
JSON
38 lines
948 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",
|
|
"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.4.1",
|
|
"@lezer/highlight": "^1.2.1",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@lezer/generator": "^1.7.2",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"rollup": "^4.29.1",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"vite-tsconfig-paths": "^4.3.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
]
|
|
}
|