-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "@ansi-tools/parser",
"version": "1.0.15",
"description": "Tokenize and parse strings containing ANSI escape sequences and control codes",
"keywords": [
"ansi",
"escape codes",
"web application"
],
"homepage": "https://github.com/webpro/ANSI.tools/tree/main/packages/parser",
"bugs": "https://github.com/webpro/ANSI.tools/issues",
"license": "ISC",
"author": "Lars Kappert <lars@webpro.nl>",
"repository": {
"type": "git",
"url": "github:webpro/ANSI.tools",
"directory": "packages/parser"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./escaped": {
"types": "./dist/escaped.d.ts",
"import": "./dist/escaped.js",
"default": "./dist/escaped.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "pnpm type-check && pnpm test",
"build": "tsdown --dts --minify src/index.ts src/escaped.ts",
"dev": "tsdown --dts src/index.ts src/escaped.ts --watch",
"test": "node --import ./test/assertions.ts --test",
"type-check": "tsc --noEmit",
"prepack": "pnpm build"
},
"devDependencies": {
"@types/node": "^24.12.0",
"mitata": "^1.0.34",
"tsdown": "^0.15.7",
"typescript": "^5.9.3"
}
}