139 lines
4.2 KiB
JSON
139 lines
4.2 KiB
JSON
{
|
|
"name": "dpml-prompt",
|
|
"version": "0.0.2-snapshot.6",
|
|
"description": "DPML-powered AI prompt framework - Revolutionary AI-First CLI system based on Deepractice Prompt Markup Language. Build sophisticated AI agents with structured prompts, memory systems, and execution frameworks.",
|
|
"main": "src/lib/index.js",
|
|
"bin": {
|
|
"dpml-prompt": "src/bin/promptx.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/bin/promptx.js",
|
|
"test": "jest",
|
|
"test:unit": "jest --selectProjects unit",
|
|
"test:integration": "jest --selectProjects integration",
|
|
"test:e2e": "jest --selectProjects e2e",
|
|
"test:watch": "jest --watch",
|
|
"test:watchUnit": "jest --watch --selectProjects unit",
|
|
"test:watchIntegration": "jest --watch --selectProjects integration",
|
|
"test:coverage": "jest --coverage",
|
|
"test:coverageUnit": "jest --coverage --selectProjects unit",
|
|
"test:coverageIntegration": "jest --coverage --selectProjects integration",
|
|
"test:coverageE2e": "jest --coverage --selectProjects e2e",
|
|
"test:ci": "jest --ci --coverage --watchAll=false",
|
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
"build": "node src/scripts/build.js",
|
|
"build:watch": "node src/scripts/build.js --watch",
|
|
"lint": "eslint src/ --no-error-on-unmatched-pattern || true",
|
|
"lint:fix": "eslint src/ --fix --no-error-on-unmatched-pattern || true",
|
|
"format": "echo 'Format skipped - no formatting restrictions'",
|
|
"format:check": "echo 'Format check skipped - no formatting restrictions'",
|
|
"validate": "npm run test:ci",
|
|
"precommit": "echo 'Pre-commit hooks disabled'",
|
|
"changeset": "changeset",
|
|
"changeset:version": "changeset version",
|
|
"changeset:publish": "changeset publish",
|
|
"changeset:status": "changeset status",
|
|
"release": "pnpm run build && pnpm changeset publish",
|
|
"release:snapshot": "pnpm changeset version --snapshot snapshot && pnpm changeset publish --tag snapshot",
|
|
"version:patch": "pnpm changeset add --type patch",
|
|
"version:minor": "pnpm changeset add --type minor",
|
|
"version:major": "pnpm changeset add --type major"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"prompt/",
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE",
|
|
"CHANGELOG.md"
|
|
],
|
|
"dependencies": {
|
|
"@reaxi/node-detect-runtime": "^0.1.0",
|
|
"boxen": "^5.1.2",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^11.0.0",
|
|
"find-monorepo-root": "^1.0.3",
|
|
"find-pkg-dir": "^2.0.0",
|
|
"find-up": "^7.0.0",
|
|
"fs-extra": "^11.1.0",
|
|
"glob": "^10.3.0",
|
|
"inquirer": "^8.2.4",
|
|
"ora": "^5.4.1",
|
|
"pkg-dir": "^8.0.0",
|
|
"platform-folders": "^0.6.0",
|
|
"resolve": "^1.22.10",
|
|
"resolve-package": "^1.0.1",
|
|
"semver": "^7.5.0",
|
|
"yaml": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.1",
|
|
"@changesets/cli": "^2.29.4",
|
|
"@types/jest": "^29.5.0",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-jest": "^27.2.0",
|
|
"husky": "^8.0.0",
|
|
"jest": "^29.5.0",
|
|
"jest-environment-node": "^29.5.0",
|
|
"lint-staged": "^13.2.0",
|
|
"prettier": "^2.8.0",
|
|
"supertest": "^6.3.0",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"keywords": [
|
|
"dpml",
|
|
"deepractice",
|
|
"ai",
|
|
"prompt",
|
|
"prompt-engineering",
|
|
"markup-language",
|
|
"ai-first",
|
|
"cli",
|
|
"chatgpt",
|
|
"claude",
|
|
"conversation",
|
|
"agent",
|
|
"framework",
|
|
"role-playing",
|
|
"memory-system",
|
|
"automation"
|
|
],
|
|
"author": {
|
|
"name": "Deepractice",
|
|
"email": "sean@deepracticex.com",
|
|
"url": "https://deepractice.ai"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/Deepractice/PromptX#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Deepractice/PromptX.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Deepractice/PromptX/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,md}": [
|
|
"echo 'Lint-staged disabled'"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "echo 'Pre-commit hooks disabled'",
|
|
"pre-push": "echo 'Pre-push hooks disabled'"
|
|
}
|
|
}
|
|
}
|