-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.6 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ansie",
"description": "A simple rendering engine for rich text terminal output with its own markup language.",
"version": "1.0.4",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/esm/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"homepage": "https://github.com/kshehadeh/ansie/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/kshehadeh/ansie"
},
"author": "Karim Shehadeh <[email protected]> (http://karim.cloud/)",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/karimshehadeh"
},
"bugs": {
"url": "https://github.com/kshehadeh/ansie/issues"
},
"license": "MIT",
"keywords": [
"terminal",
"cli",
"markup",
"parser",
"rendering",
"rich",
"text",
"ansi",
"color",
"colour",
"form"
],
"scripts": {
"test": "jest",
"lint": "eslint",
"typecheck": "tsc --noEmit --skipLibCheck",
"build": "rollup -c rollup.config.cjs.js && rollup -c rollup.config.esm.js",
"build:watch": "rollup -c rollup.config.esm.js -w",
"deploy": "./scripts/deploy.sh",
"increment": "npm version patch --no-git-tag-version",
"fixture:generate": "bun test/record.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/yargs": "^17.0.33",
"@typescript-eslint/typescript-estree": "^8.20.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"bun-types": "^1.1.45",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"jest": "^29.7.0",
"lefthook": "^1.10.8",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"@inquirer/select": "^4.0.6",
"acorn": "^8.14.0",
"acorn-jsx": "^5.3.2",
"marked": "^15.0.6",
"ts-deepmerge": "^7.0.2"
},
"files": [
"dist"
],
"eslintIgnore": [
"generated-parser.js"
]
}