UNPKG

haystack-codegen

Version:

Project Haystack Core code generation tools

85 lines (84 loc) 2.15 kB
{ "name": "haystack-codegen", "description": "Project Haystack Core code generation tools", "keywords": [ "project haystack", "haystack", "core", "typescript", "codegen" ], "license": "BSD-3-Clause", "author": "Gareth Johnson", "homepage": "https://github.com/j2inn/haystack-codegen", "email": "support@j2inn.com", "version": "1.0.6", "module": "dist/index.es.js", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/j2inn/haystack-codegen" }, "bin": { "defcodegen": "dist/index.js" }, "scripts": { "lint": "prettier-eslint \"src/**/*.ts\" \"spec/**/*.ts\"", "format": "prettier-eslint \"src/**/*.ts\" \"spec/**/*.ts\" --write", "test": "jest", "build": "npm run build:clean && tsc --project ./tsconfig.build.json", "build:clean": "rimraf ./dist", "prepack": "npm run lint && npm test && npm run build", "codegen": "npm run build && node ./dist/index", "doc": "typedoc ./src", "checktypes": "tsc --noEmit" }, "files": [ "dist/**/*", "rc/**/*" ], "config": { "unsafe-perm": true }, "devDependencies": { "@types/adm-zip": "^0.5.0", "@types/colors": "^1.2.4", "@types/jest": "^29.4.0", "@types/node": "^18.7.14", "@types/node-fetch": "^2.6.12", "@typescript-eslint/eslint-plugin": "^5.36.0", "@typescript-eslint/parser": "^5.36.0", "copyfiles": "^2.4.1", "eslint": "^8.23.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.4.3", "nodemon": "^2.0.19", "npm-dts": "^1.3.13", "npm-dts-webpack-plugin": "^1.3.13", "prettier": "^2.7.1", "prettier-eslint": "^15.0.1", "prettier-eslint-cli": "^7.1.0", "rimraf": "^3.0.2", "rollup": "^2.78.1", "ts-jest": "^29.0.5", "ts-loader": "^9.3.1", "ts-node": "^10.9.2", "typedoc": "^0.27.6", "typescript": "^5.1.3", "typescript-eslint-parser": "^22.0.0" }, "dependencies": { "adm-zip": "^0.5.9", "colors": "^1.4.0", "commander": "^9.4.0", "haystack-core": "^3.0.5", "haystack-nclient": "^4.0.3", "node-fetch": "^2.6.5", "yaml": "^2.7.1" }, "optionalDependencies": { "fsevents": "^2.3.2" } }