UNPKG

@stackpress/idea

Version:

An open source schema file standard and generator

71 lines (70 loc) 1.66 kB
{ "type": "module", "name": "@stackpress/idea", "version": "0.6.1", "license": "Apache-2.0", "description": "An open source schema file standard and generator", "author": "Chris <chris@incept.asia>", "homepage": "https://github.com/stackpress/idea", "bugs": "https://github.com/stackpress/idea/issues", "repository": "stackpress/idea", "keywords": [ "ts", "typescript", "cjs", "esm", "generator", "CLI", "ORM", "AI", "graphql", "idea", "stackpress" ], "main": "./cjs/index.js", "module": "./esm/index.js", "types": "./cjs/index.d.ts", "exports": { ".": { "require": "./cjs/index.js", "import": "./esm/index.js" }, "./bin": { "require": "./cjs/bin.js", "import": "./esm/bin.js" } }, "typesVersions": { "*": { "index": [ "./cjs/index.d.ts"] } }, "files": [ "cjs", "esm", "bin.js", "LICENSE", "README.md" ], "bin": { "idea": "./cjs/bin.js" }, "scripts": { "build": "yarn build:tsc && yarn build:pkg", "build:pkg": "yarn build:pkg:cjs && yarn build:pkg:esm", "build:pkg:cjs": "echo '{\"type\": \"commonjs\"}' > cjs/package.json", "build:pkg:esm": "echo '{\"type\": \"module\"}' > esm/package.json", "build:tsc": "yarn build:tsc:cjs && yarn build:tsc:esm", "build:tsc:cjs": "tsc -p ./tsconfig.cjs.json", "build:tsc:esm": "tsc -p ./tsconfig.esm.json" }, "dependencies": { "@stackpress/idea-parser": "0.6.1", "@stackpress/idea-transformer": "0.6.1" }, "devDependencies": { "@types/node": "22.9.3", "ts-node": "10.9.2", "typescript": "5.7.2" } }