This commit is contained in:
commit
14bec5c5cd
22 changed files with 969 additions and 0 deletions
66
package.json
Normal file
66
package.json
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue