89 lines
2.1 KiB
JSON
89 lines
2.1 KiB
JSON
{
|
|
"name": "captchalm",
|
|
"version": "1.1.0",
|
|
"description": "AI-only access control - a reverse CAPTCHA that allows AI agents while blocking humans",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./client": {
|
|
"types": "./dist/client/index.d.ts",
|
|
"import": "./dist/client/index.js",
|
|
"require": "./dist/client/index.cjs"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/core/types.d.ts",
|
|
"import": "./dist/core/types.js",
|
|
"require": "./dist/core/types.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"lint": "eslint src",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build",
|
|
"release": "npm version patch && npm publish --access public",
|
|
"release:minor": "npm version minor && npm publish --access public",
|
|
"release:major": "npm version major && npm publish --access public"
|
|
},
|
|
"keywords": [
|
|
"captcha",
|
|
"ai",
|
|
"agent",
|
|
"authentication",
|
|
"access-control",
|
|
"llm",
|
|
"reverse-captcha",
|
|
"ai-agent",
|
|
"bot-protection",
|
|
"machine-learning"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/YOUR_USERNAME/captchalm.git"
|
|
},
|
|
"homepage": "https://github.com/YOUR_USERNAME/captchalm#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/YOUR_USERNAME/captchalm/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^20.10.0",
|
|
"eslint": "^8.55.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"express": ">=4.0.0",
|
|
"fastify": ">=4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"express": {
|
|
"optional": true
|
|
},
|
|
"fastify": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|