-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.93 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
{
"name": "cli-high",
"version": "0.4.3",
"description": "tiny cli highlighter",
"type": "module",
"keywords": [
"cli",
"highlighter",
"highlight",
"color",
"terminal",
"console"
],
"license": "MIT",
"homepage": "https://github.com/xinyao27/cli-high#readme",
"bugs": {
"url": "https://github.com/xinyao27/cli-high/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinyao27/cli-high.git"
},
"author": {
"name": "xinyao",
"email": "[email protected]"
},
"funding": "https://github.com/sponsors/xinyao27",
"files": [
"bin/*",
"dist/*",
"package.json"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"bin": "./bin/index.js",
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"typecheck": "tsc --noEmit",
"lint": "nr typecheck && eslint . --fix",
"prepublishOnly": "nr build",
"release": "release-it",
"start": "bun run src/index.ts",
"test": "bun test",
"up": "taze major -I",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"sugar-high": "^0.7.1",
"xycolors": "^0.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@commitlint/cli": "^19.5.0",
"@release-it/conventional-changelog": "^9.0.0",
"@types/bun": "^1.1.11",
"@types/yargs": "^17.0.33",
"@xystack/style-guide": "^0.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"release-it": "^17.9.0",
"taze": "^0.17.2",
"typescript": "^5.6.3",
"unbuild": "^2.0.0"
},
"prettier": "@xystack/style-guide/prettier"
}