-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 1.59 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
{
"name": "ink-syntax-highlight",
"version": "1.0.1",
"description": "Synax highlight component for Ink",
"license": "MIT",
"repository": "vsashyn/ink-syntax-highlight",
"author": {
"name": "Vitalii Sashyn",
"email": "[email protected]",
"url": "github.com/vsashyn"
},
"main": "build",
"types": "build/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "tsc && xo",
"build": "tsc && xo",
"prepare": "tsc"
},
"files": [
"build"
],
"keywords": [
"ink",
"code",
"syntax",
"component",
"jsx",
"react"
],
"dependencies": {
"cli-highlight": "^2.1.9"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-react": "^7.10.1",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/react": "^16.9.46",
"@vdemedes/prettier-config": "^1.0.0",
"ava": "^3.9.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"import-jsx": "^4.0.0",
"ink": "^3.0.0-4",
"ink-testing-library": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.8.2",
"typescript": "^3.9.5",
"xo": "^0.32.0"
},
"peerDependencies": {
"ink": "^3.0.0-4",
"react": "^16.8.2"
},
"ava": {
"babel": {
"testOptions": {
"presets": [
"@babel/preset-react"
]
}
}
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
},
"ignores": [
"./build"
]
},
"prettier": "@vdemedes/prettier-config",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}