-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.61 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
{
"name": "text-compress",
"version": "2.0.6",
"description": "Brotli-compress text or folders to base64/base85 strings for easy sharing",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"text-compress": "dist/cli.js"
},
"files": [
"dist",
"skills",
"!skills/_artifacts"
],
"scripts": {
"build": "tsc",
"check": "biome check --write . && tsc && bun run validate:skills",
"check:ci": "biome check . && tsc && bun run validate:skills",
"dev": "tsx src/cli.ts",
"lint": "biome check .",
"typecheck": "tsc",
"test": "vitest run",
"pretest": "npm run build",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"validate:skills": "intent validate",
"prepare": "husky"
},
"keywords": [
"brotli",
"compression",
"base64",
"base85",
"z85",
"text",
"archive",
"tanstack-intent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/startdo-ing/text-compress-cli.git"
},
"bugs": {
"url": "https://github.com/startdo-ing/text-compress-cli/issues"
},
"homepage": "https://github.com/startdo-ing/text-compress-cli#readme",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@tanstack/intent": "^0.3.5",
"@types/node": "^26.1.1",
"husky": "^9.1.7",
"tsx": "^4.23.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"dependencies": {
"ignore": "^7.0.5"
}
}