UNPKG

@tripsnek/tmf

Version:

TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)

78 lines 1.96 kB
{ "name": "@tripsnek/tmf", "version": "1.2.7", "description": "TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "bin": { "tmf-gen": "./dist/bin/tmf-gen.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "npm run clean && tsc -p tsconfig.build.json", "build:watch": "tsc -p tsconfig.build.json --watch", "clean": "rimraf dist", "prepublishOnly": "npm run build", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "gen-model": "node src/__tests__/scripts/generate.mjs" }, "keywords": [ "emf", "typescript", "eclipse-modeling-framework", "model-driven-engineering", "modeling", "metamodel", "ecore", "model-driven", "code-generation", "reflection", "introspection", "containment" ], "author": "Daniel Tuohy <danielr2e@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/tripsnek/tmf.git" }, "bugs": { "url": "https://github.com/tripsnek/tmf/issues" }, "homepage": "https://github.com/tripsnek/tmf#readme", "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^18.16.9", "@typescript-eslint/eslint-plugin": "^7.16.0", "@typescript-eslint/parser": "^7.16.0", "eslint": "^8.57.1", "jest": "^29.7.0", "prettier": "^2.6.2", "rimraf": "^5.0.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "dependencies": { "uuid": "^11.1.0" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" } }