pomljs
Version:
Prompt Orchestration Markup Language
71 lines (70 loc) • 1.71 kB
JSON
{
"name": "pomljs",
"version": "0.0.7",
"description": "Prompt Orchestration Markup Language",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/poml"
},
"homepage": "https://github.com/microsoft/poml",
"keywords": [
"poml",
"prompt",
"markup",
"language",
"ai",
"llm"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist .build README.md LICENSE poml-*.tgz",
"prebuild": "npm run clean",
"build": "tspc -p tsconfig.json && rollup -c rollup.config.js",
"prepack": "cp ../../README.md . && cp ../../LICENSE . && npm run build",
"postpack": "rm -rf README.md LICENSE"
},
"dependencies": {
"@xml-tools/ast": "^5.0.5",
"@xml-tools/content-assist": "^3.1.11",
"@xml-tools/parser": "^1.0.11",
"cheerio": "^1.0.0",
"closest-match": "^1.3.3",
"d3-dsv": "~2.0.0",
"js-yaml": "^4.1.0",
"lodash.throttle": "^4.1.1",
"mammoth": "^1.9.0",
"pdf-parse": "^1.1.1",
"pdfjs-dist": "~3.11.174",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"react-keyed-flatten-children": "^5.0.0",
"sharp": "^0.33.5",
"showdown": "^2.1.0",
"xlsx": "^0.18.5",
"xmlbuilder2": "^3.1.1",
"yargs": "^17.7.2"
},
"bin": {
"poml": "./dist/cli.cjs"
}
}