-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.67 KB
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
{
"name": "@dino-dna/react-tui",
"version": "0.0.1-semantic-release",
"description": "React in your terminal emulator",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"bundle:demo": "rm -f debug.log && rm -rf dist/ && webpack --watch --hot > /dev/null",
"clean:demo": "rm -f bundle.js",
"clean": "del '{examples,src,test,scripts}/**/*.{d.ts,js}' 'dist' './*.log'",
"demo": "run-p clean:demo bundle:demo start:demo",
"format": "prettier '{docs,examples,run,src,test}/**/*.{md,ts,tsx}' './*.{md,ts,js}' --write",
"postinstall": "patch-package",
"prebundle:demo": "wait-on scripts/webpack-hmr-log.js && cp scripts/webpack-hmr-log.js ./node_modules/webpack/hot/log.js",
"start:demo": "sleep 1 && wait-on dist/main.bundle.js && node --inspect dist/main.bundle.js",
"start": "DEBUG=reconciler:blessed nodemon --inspect -I examples/index",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dino-dna/react-tui.git"
},
"files": [
"src",
"types"
],
"keywords": [
"blessed",
"reconciler",
"component",
"components",
"renderer",
"react",
"tui",
"terminal",
"neo-blessed"
],
"author": "cdaringe",
"license": "MIT",
"bugs": {
"url": "https://github.com/dino-dna/react-tui/issues"
},
"homepage": "https://github.com/dino-dna/react-tui#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@hot-loader/react-dom": "^16.13.0",
"@types/blessed": "^0.1.17",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.152",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.4",
"@types/react-motion": "0.0.29",
"@types/react-reconciler": "^0.18.0",
"@types/react": "^16.9.35",
"ava": "^3.8.2",
"babel-loader": "^8.1.0",
"del-cli": "^3.0.1",
"invariant": "^2.2.0",
"lodash": "^4.x.x",
"mocha": "^4.0.1",
"neo-blessed": "^0.2.0",
"node-pty": "^0.9.0",
"npm-run-all": "^4.1.5",
"pkg-up": "^3.1.0",
"prettier": "^2.0.5",
"react-devtools": "^4.7.0",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-motion": "^0.5.2",
"through2": "^3.0.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"wait-on": "^5.0.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^1.7.2",
"webpack": "^4.43.0"
},
"peerDependencies": {
"react": "^16"
},
"dependencies": {
"@seznam/compose-react-refs": "^1.0.4",
"patch-package": "^6.2.2",
"react": "^16.13.1",
"react-reconciler": "^0.25.1"
}
}