Initial commit
This commit is contained in:
56
skills/prompt/package.json
Normal file
56
skills/prompt/package.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "advanced-prompt-crafter",
|
||||
"version": "1.0.0",
|
||||
"description": "A sophisticated multi-layered prompt engineering system with analysis, optimization, customization, and validation engines",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "bun test",
|
||||
"test:watch": "bun test --watch",
|
||||
"test:coverage": "bun test --coverage",
|
||||
"lint": "eslint src/**/*.ts",
|
||||
"lint:fix": "eslint src/**/*.ts --fix",
|
||||
"dev": "tsc --watch",
|
||||
"clean": "rm -rf dist",
|
||||
"prepublishOnly": "npm run clean && npm run build && npm run test"
|
||||
},
|
||||
"keywords": [
|
||||
"prompt-engineering",
|
||||
"ai",
|
||||
"automation",
|
||||
"productivity",
|
||||
"content-creation",
|
||||
"analysis",
|
||||
"optimization"
|
||||
],
|
||||
"author": "Eduardo Menoncello",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/bmad/bmm/skills/advanced-prompt-crafter.git"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"dependencies": {
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
||||
"@typescript-eslint/parser": "^6.13.0",
|
||||
"bun-types": "^1.0.0",
|
||||
"eslint": "^8.54.0",
|
||||
"typescript": "^5.3.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user