-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "@unveil/compactor",
"version": "1.0.0",
"description": "Convert GitHub events into a compact strings optimized for LLM efficiency",
"homepage": "https://github.com/unveil-project/compactor#readme",
"bugs": {
"url": "https://github.com/unveil-project/compactor/issues"
},
"license": "MIT",
"author": "Matteo Gabriele <m.gabriele.dev@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/unveil-project/compactor.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"typecheck": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"bumpp": "^11.0.1",
"publint": "^0.3.18",
"typescript": "^5.9.3",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}
}