UNPKG

@tripsnek/tmf

Version:

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

86 lines (85 loc) 2.41 kB
{ "name": "@tripsnek/tmf", "version": "1.1.30", "description": "TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)", "type": "module", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "import": { "types": "./dist/types/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/types/index.d.ts", "default": "./dist/cjs/index.js" } } }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs", "build:types": "tsc -p tsconfig.types.json", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json && node -e \"require('fs').writeFileSync('dist/cjs/package.json', JSON.stringify({type: 'commonjs'}, null, 2))\"", "build:watch": "tsc -p tsconfig.esm.json --watch", "clean": "rimraf dist", "prepublishOnly": "npm run build", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "gen-model": "npm run build:cjs && node scripts/generate-model.cjs" }, "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" } }