-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "ink-ascii",
"version": "0.0.4",
"description": "Awesome ASCII art component for Ink!",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"debug": "node --inspect=0.0.0.0:13579 --nolazy -r ts-node/register ./src/index.tsx",
"test": "jest"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hexrcs/ink-ascii.git"
},
"author": "Xiaoru Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexrcs/ink-ascii/issues"
},
"homepage": "https://github.com/hexrcs/ink-ascii#readme",
"dependencies": {
"figlet": "^1.2.4",
"ink": "^2.6.0",
"react": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/figlet": "^1.2.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@types/react": "^16.9.17",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"ink-testing-library": "^1.0.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.4"
},
"peerDependencies": {
"ink": ">=2.5.0",
"react": ">=16.11.0"
}
}