uniai/package.json
rus07tam 14bec5c5cd
All checks were successful
Publish to npm / publish-npm (release) Successful in 9s
initial commit
2026-02-08 12:25:57 +00:00

66 lines
1.6 KiB
JSON

{
"name": "@ruject/uniai",
"version": "0.1.0",
"description": "A unified layer for working with AI providers",
"repository": "https://git.ruject.fun/RuJect/uniau",
"homepage": "https://git.ruject.fun/RuJect/uniau",
"bugs": {
"url": "https://git.ruject.fun/RuJect/uniau/issues"
},
"author": "RuJect <https://git.ruject.fun/RuJect>",
"license": "Unlicense",
"keywords": [
"typescript",
"cli",
"bun",
"ai",
"openai"
],
"type": "module",
"packageManager": "bun@1.3.6",
"bin": {
"tmpl": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"!dist/**/*.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepack": "bun run clean && bun run build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"type-fest": "^5.4.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"@types/eslint-plugin-security": "^3.0.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.23",
"eslint": "10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.6",
"eslint-plugin-unicorn": "^62.0.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}