-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.28 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "imrobot",
"version": "0.6.2",
"description": "I'm a robot. Reverse-CAPTCHA that verifies AI agents and robots, not humans.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js",
"require": "./dist/core/index.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.js",
"require": "./dist/vue/index.cjs"
},
"./svelte": {
"svelte": "./src/svelte/ImRobot.svelte",
"import": "./src/svelte/ImRobot.svelte"
},
"./web-component": {
"types": "./dist/web-component/index.d.ts",
"import": "./dist/web-component/index.js",
"require": "./dist/web-component/index.cjs"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs"
}
},
"bin": {
"imrobot": "./dist/cli/index.cjs"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"prepublishOnly": "npm run build",
"coverage": "vitest run --coverage",
"ci": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run build"
},
"keywords": [
"captcha",
"reverse-captcha",
"bot",
"robot",
"ai",
"agent",
"verification",
"web-component",
"react",
"vue",
"svelte",
"server",
"hmac",
"jwt",
"proof-of-agent",
"middleware",
"cli",
"invisible",
"crypto"
],
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"license": "MIT",
"author": "Leo Pechnicki",
"repository": {
"type": "git",
"url": "https://github.com/leopechnicki/im_robot.git"
},
"homepage": "https://imrobot.vercel.app",
"bugs": {
"url": "https://github.com/leopechnicki/im_robot/issues"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"vue": ">=3.0.0",
"svelte": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
},
"svelte": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^5.53.5",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^4.1.0",
"vue": "^3.4.0",
"@eslint/js": "^9.0.0",
"typescript-eslint": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@vue/test-utils": "^2.4.0",
"jsdom": "^24.0.0",
"happy-dom": "^20.8.3"
}
}