@puffle/cookiejar 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@puffle/cookiejar",
3
+ "version": "0.1.0",
4
+ "description": "Local-only cookie bundle manager: pick cookies from your browsers, group them into password-protected bundles, hand a bundle to a coding agent.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=22.5"
9
+ },
10
+ "bin": {
11
+ "cookiejar": "dist/cli.js"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/DevelopIQ-ai/cookiejar.git"
23
+ },
24
+ "homepage": "https://github.com/DevelopIQ-ai/cookiejar#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/DevelopIQ-ai/cookiejar/issues"
27
+ },
28
+ "keywords": [
29
+ "cookies",
30
+ "mcp",
31
+ "browser",
32
+ "automation",
33
+ "agent",
34
+ "auth",
35
+ "cli"
36
+ ],
37
+ "scripts": {
38
+ "build": "npm run build:server && npm run build:ui",
39
+ "build:server": "tsc -p tsconfig.json",
40
+ "build:ui": "npm --prefix ui run build",
41
+ "dev": "node --import tsx src/cli.ts ui --dev",
42
+ "start": "node dist/cli.js ui",
43
+ "typecheck": "tsc -p tsconfig.json --noEmit && npm --prefix ui run typecheck",
44
+ "lint": "eslint .",
45
+ "test": "node --import tsx --test test/*.test.ts",
46
+ "prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build"
47
+ },
48
+ "devDependencies": {
49
+ "@eslint/js": "^9.18.0",
50
+ "@types/node": "^22.10.5",
51
+ "eslint": "^9.18.0",
52
+ "tsx": "^4.19.2",
53
+ "typescript": "^5.7.3",
54
+ "typescript-eslint": "^8.20.0"
55
+ }
56
+ }