-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.18 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
92
93
{
"name": "xycolors",
"version": "0.1.2",
"description": "A tiny and fast package for adding colors to your terminal output.",
"type": "module",
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
"ansi",
"style",
"styles",
"tty",
"formatting",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"license": "MIT",
"homepage": "https://github.com/xinyao27/xycolors#readme",
"bugs": {
"url": "https://github.com/xinyao27/xycolors/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinyao27/xycolors.git"
},
"author": {
"name": "xinyao",
"email": "hi@xinyao.me"
},
"funding": "https://github.com/sponsors/xinyao27",
"files": [
"dist/*"
],
"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,
"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 install",
"benchmark": "node ./benchmark.js"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@commitlint/cli": "^19.3.0",
"@jonahsnider/benchmark": "^5.0.3",
"@release-it/conventional-changelog": "^8.0.1",
"@types/bun": "^1.1.2",
"@xystack/style-guide": "^0.1.0",
"ansi-colors": "^4.1.3",
"chalk": "^5.3.0",
"cli-color": "^2.0.4",
"colorette": "^2.0.20",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"kleur": "^4.1.5",
"lint-staged": "^15.2.2",
"nanocolors": "^0.2.13",
"picocolors": "^1.0.1",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"prettier": "@xystack/style-guide/prettier"
}