gensx
Version:
`GenSX command line tools.
88 lines • 2.17 kB
JSON
{
"name": "gensx",
"version": "0.3.37",
"description": "`GenSX command line tools.",
"repository": {
"type": "git",
"url": "https://github.com/gensx-inc/gensx.git",
"directory": "packages/gensx"
},
"bin": {
"gensx": "./dist/run.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"keywords": [
"typescript",
"gensx",
"cli"
],
"author": "GenSX Team",
"license": "Apache-2.0",
"devDependencies": {
"@types/chokidar": "^2.1.7",
"@types/ini": "^4.1.1",
"@types/node": "^18",
"@types/react": "^19",
"@vitest/coverage-istanbul": "^3.2.3",
"eslint-plugin-n": "^17.19.0",
"ink-testing-library": "^4.0.0",
"typescript": "^5.7.2",
"vitest": "^3.2.3"
},
"dependencies": {
"@hono/node-server": "^1.14.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"ajv": "^8.17.1",
"axios": "^1.9.0",
"chokidar": "^4.0.3",
"commander": "^11.0.0",
"consola": "^3.4.2",
"figures": "^6.1.0",
"find-up": "^7.0.0",
"form-data": "^4.0.3",
"hono": "^4.7.11",
"ini": "^5.0.0",
"ink": "^5.2.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"open": "^10.1.2",
"react": "18.3.1",
"typescript": "^5.8.3",
"typescript-json-schema": "^0.65.1",
"ulidx": "^2.4.1",
"undici": "^6.21.3",
"zod": "^3.25.56"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && cp -r src/templates dist/ && chmod +x dist/run.js",
"test:types": "tsc --noEmit",
"clean": "rm -rf dist",
"compile": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "tsx ./src/run.ts",
"start:node": "node ./dist/run.js",
"test": "vitest run",
"test:watch": "vitest"
}
}