-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "@suin/osc633-parser",
"version": "0.0.0-alpha2",
"description": "A Node.js library that parses Operating System Command (OSC) 633 sequences from any AsyncIterable string source. These sequences were originally designed by VS Code for its terminal shell integration feature.",
"keywords": [
"vscode",
"terminal",
"shell-integration",
"osc",
"parser",
"async-iterator"
],
"homepage": "https://github.com/suin/osc633-parser#readme",
"bugs": {
"url": "https://github.com/suin/osc633-parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/suin/osc633-parser.git"
},
"license": "MIT",
"author": {
"name": "suin",
"url": "https://github.com/suin"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./js/index.d.ts",
"import": "./js/index.js"
}
},
"main": "js/index.js",
"types": "js/index.d.ts",
"files": ["js", "ts/index.ts", "README.md", "LICENSE"],
"scripts": {
"build": "tsc -b",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}