ecore-ts
Version:
Ecore (EMOF) TypeScript Implementation
61 lines • 1.39 kB
JSON
{
"name": "ecore-ts",
"description": "Ecore (EMOF) TypeScript Implementation",
"version": "0.17.8",
"type": "module",
"main": "dist/ecore-ts.js",
"module": "dist/ecore-ts.js",
"types": "dist/main.d.ts",
"unpkg": "dist/ecore-ts.js",
"author": "Norbert Herczeg <norbert.herczeg@blackbelt.hu>",
"contributors": [
{
"name": "Guillaume Hillairet",
"email": "g.hillairet@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/BlackBeltTechnology/ecore-ts.git"
},
"keywords": [
"emf",
"emof",
"ecore",
"model",
"TypeScript"
],
"files": [
"dist",
"examples",
"archive"
],
"engines": {
"node": ">= 20.0.0"
},
"dependencies": {
"lodash-es": "^4.17.21",
"sax": "^1.4.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"@types/sax": "^1.2.7",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "~5.7.2",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.8"
},
"license": "EPL-2.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"format": "biome format ./src --write && biome format ./test --write",
"lint": "biome check --write ./src"
}
}