mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 15:49:35 +01:00
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@effigenix/api-client",
|
|
"version": "0.1.0",
|
|
"description": "HTTP client for the Effigenix ERP API",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@effigenix/config": "workspace:*",
|
|
"@effigenix/types": "workspace:*",
|
|
"axios": "^1.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^1.2.2",
|
|
"axios-mock-adapter": "^1.22.0"
|
|
},
|
|
"tsup": {
|
|
"entry": ["src/index.ts"],
|
|
"format": ["esm"],
|
|
"dts": true,
|
|
"clean": true,
|
|
"sourcemap": true,
|
|
"splitting": false
|
|
}
|
|
}
|