-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.62 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.62 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
{
"name": "@clayroach/claude-session-gists",
"version": "0.1.2",
"description": "Effect-TS utilities for extracting and archiving Claude Code sessions",
"type": "module",
"license": "MIT",
"author": "Clay Roach",
"repository": {
"type": "git",
"url": "https://github.com/clayroach/claude-session-gists"
},
"bugs": {
"url": "https://github.com/clayroach/claude-session-gists/issues"
},
"homepage": "https://github.com/clayroach/claude-session-gists#readme",
"publishConfig": {
"access": "public",
"directory": "dist",
"provenance": false
},
"scripts": {
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && pnpm build-pack",
"build-esm": "tsc -b tsconfig.build.json",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-pack": "pnpm build-pack-json && pnpm build-pack-copy",
"build-pack-json": "tsx scripts/pack.ts",
"build-pack-copy": "cp -r build/dts build/esm build/cjs README.md LICENSE dist/",
"dev": "tsx src/bin/cli.ts",
"test": "vitest",
"check": "tsc -b tsconfig.json",
"lint": "eslint src",
"clean": "rm -rf build dist .tsbuildinfo",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"publish:local": "cd dist && npm publish --registry http://localhost:4873/",
"prepare": "husky"
},
"exports": {
".": {
"import": {
"types": "./dts/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dts/index.d.ts",
"default": "./cjs/index.js"
}
},
"./Session": {
"import": {
"types": "./dts/Session.d.ts",
"default": "./esm/Session.js"
},
"require": {
"types": "./dts/Session.d.ts",
"default": "./cjs/Session.js"
}
},
"./Gist": {
"import": {
"types": "./dts/Gist.d.ts",
"default": "./esm/Gist.js"
},
"require": {
"types": "./dts/Gist.d.ts",
"default": "./cjs/Gist.js"
}
},
"./Formatter": {
"import": {
"types": "./dts/Formatter.d.ts",
"default": "./esm/Formatter.js"
},
"require": {
"types": "./dts/Formatter.d.ts",
"default": "./cjs/Formatter.js"
}
}
},
"bin": {
"claude-session-gists": "./esm/bin/cli.js"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./dts/index.d.ts",
"keywords": [
"effect",
"effect-ts",
"claude",
"claude-code",
"session",
"gist",
"github",
"observability",
"devtools"
],
"peerDependencies": {
"effect": "^3.0.0"
},
"dependencies": {
"@effect/cli": "^0.72.0",
"@effect/platform": "^0.82.0",
"@effect/platform-node": "^0.78.0"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.27.0",
"@babel/plugin-transform-export-namespace-from": "^7.27.0",
"@babel/plugin-transform-modules-commonjs": "^7.27.0",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.26.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"effect": "^3.18.0",
"eslint": "^9.26.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.24.0"
}