-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "osc-progress",
"version": "0.3.0",
"description": "Tiny TypeScript helper for OSC 9;4 terminal progress sequences.",
"license": "MIT",
"author": "Peter Steinberger",
"repository": {
"type": "git",
"url": "git+https://github.com/steipete/osc-progress.git"
},
"homepage": "https://github.com/steipete/osc-progress#readme",
"bugs": {
"url": "https://github.com/steipete/osc-progress/issues"
},
"keywords": [
"osc",
"terminal",
"progress",
"cli",
"ghostty",
"wezterm",
"windows-terminal"
],
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"packageManager": "pnpm@10.25.0",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "pnpm build",
"prepack": "pnpm build",
"prepublishOnly": "pnpm check",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "pnpm build && vitest run",
"test:coverage": "pnpm build && vitest run --coverage",
"check": "pnpm lint && pnpm test:coverage"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}