-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.49 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
{
"name": "ink-color-pipe",
"version": "4.0.1",
"description": "Create color text with simpler style strings in Ink",
"type": "module",
"exports": "./dist/source/index.js",
"types": "dist/source",
"dependencies": {
"chalk-pipe": "^6.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/react": "^18.3.3",
"ava": "^6.1.3",
"del-cli": "^5.1.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"ink": "^5.0.1",
"ink-testing-library": "^4.0.0",
"react": "^18.3.1",
"typescript": "^5.5.4",
"xo": "^0.59.3"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "del-cli dist && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "xo",
"demo": "npm run build && node dist/example/index.js"
},
"files": [
"dist/source/index.js",
"dist/source/index.d.ts"
],
"keywords": [
"ink-component",
"ink",
"component",
"chalk",
"chalk-pipe",
"react",
"jsx",
"terminal",
"color",
"term",
"console",
"command-line"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LitoMore/ink-color-pipe.git"
},
"author": "LitoMore",
"license": "MIT",
"bugs": {
"url": "https://github.com/LitoMore/ink-color-pipe/issues"
},
"homepage": "https://github.com/LitoMore/ink-color-pipe#readme",
"peerDependencies": {
"ink": ">=5",
"react": ">=18"
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/prop-types": 0
}
}
}