@meldscience/meld
Version:
pipeable one-shot prompt scripting toolkit
62 lines (61 loc) • 1.47 kB
JSON
{
"name": "@meldscience/meld",
"version": "0.1.0",
"description": "pipeable one-shot prompt scripting toolkit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"volta": {
"node": "22.12.0"
},
"bin": {
"meld": "./dist/bin/meld.js",
"oneshot": "./dist/bin/oneshot.js",
"oneshotcat": "./dist/bin/oneshotcat.js",
"meld-config": "./dist/bin/meld-config.js"
},
"scripts": {
"build": "tsc",
"test": "vitest --run",
"test:watch": "vitest",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"dev:meld": "ts-node bin/meld.ts",
"start": "node --no-warnings --no-deprecation ./dist/bin/oneshot.js",
"start:oneshotcat": "node ./dist/bin/oneshotcat.js"
},
"keywords": [
"ai",
"cli",
"prompt",
"code-context",
"openai",
"anthropic"
],
"author": "Adam Avenir",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.17.1",
"@types/node": "^20.11.19",
"axios": "^1.6.7",
"commander": "^12.0.0",
"openai": "^4.28.0",
"remark-directive": "^3.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vitest": "^1.3.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}