70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "@composio/cli-keyring",
|
|
"version": "0.2.0",
|
|
"description": "Cross-platform OS credential store access for the Composio CLI (macOS Keychain, Linux Secret Service).",
|
|
"main": "src/index.ts",
|
|
"private": true,
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ComposioHQ/composio.git",
|
|
"directory": "ts/packages/cli-keyring"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "dist/index.mjs",
|
|
"types": "dist/index.d.mts"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./effect": {
|
|
"types": "./dist/effect.d.mts",
|
|
"default": "./dist/effect.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "git clean -xdf node_modules",
|
|
"build": "tsdown",
|
|
"test": "vitest run",
|
|
"typecheck:src": "pnpm exec tsgo --noEmit -p ./tsconfig.src.json",
|
|
"typecheck:test": "pnpm exec tsgo --noEmit -p ./tsconfig.test.json",
|
|
"typecheck": "pnpm run typecheck:src && pnpm run typecheck:test",
|
|
"typecheck:src:tsc": "tsc --noEmit -p ./tsconfig.src.json",
|
|
"typecheck:test:tsc": "tsc --noEmit -p ./tsconfig.test.json",
|
|
"typecheck:tsc": "pnpm run typecheck:src:tsc && pnpm run typecheck:test:tsc"
|
|
},
|
|
"keywords": [
|
|
"composio",
|
|
"keyring",
|
|
"keychain",
|
|
"credential",
|
|
"secret-service",
|
|
"libsecret"
|
|
],
|
|
"author": "Composio",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^26.1.0",
|
|
"bun-types": "^1.3.14",
|
|
"effect": "^3.21.4",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"effect": ">=3.17.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"effect": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|