@fluentity/core
Version:
Fluentity is a fluent, model-oriented, typed HTTP client for TypeScript and framework agnostic.
69 lines (68 loc) • 1.78 kB
JSON
{
"name": "@fluentity/core",
"version": "1.7.0",
"description": "Fluentity is a fluent, model-oriented, typed HTTP client for TypeScript and framework agnostic.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"keywords": [
"fluentity",
"rest",
"api",
"client",
"typescript",
"model",
"fluent",
"http",
"orm"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./examples": {
"types": "./examples/models/index.d.ts",
"import": "./examples/models/index.js"
}
},
"packageManager": "bun@1.0.0",
"author": "Cedric Pierre",
"email": "jirotoh@gmail.com",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --minify --target node && bun run build:dts",
"build:dts": "bunx tsc -p tsconfig.build.json",
"test": "bun test",
"test:coverage": "bun test --coverage",
"docs": "typedoc",
"dev": "bun --watch src/index.ts",
"lint": "bun lint",
"format": "bun fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedricpierre/fluentity-core.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cedricpierre/fluentity-core/issues"
},
"homepage": "https://github.com/cedricpierre/fluentity-core#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.27.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"bun-types": "^1.2.14",
"dts-bundle-generator": "^9.5.1",
"typedoc": "^0.28.4",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "~5.8.3"
}
}