-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.77 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.77 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "tinky",
"version": "1.8.0",
"description": "React for CLIs, re-imagined with the Taffy engine",
"keywords": [
"react",
"taffy",
"cli",
"terminal",
"layout-engine",
"flexbox",
"grid",
"renderer"
],
"homepage": "https://github.com/ByteLandTechnology/tinky#readme",
"bugs": {
"url": "https://github.com/ByteLandTechnology/tinky/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/tinky.git"
},
"license": "MIT",
"author": {
"name": "ByteLandTechnology"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"./bin/*",
"./lib/*"
],
"scripts": {
"test": "bun test",
"benchmark": "bun run benchmark/index.ts",
"build": "tsc && npm run docs",
"lint": "eslint src/**/*.ts",
"prepublish": "npm run build",
"prepare": "husky",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api && prettier --write docs/api"
},
"dependencies": {
"@alcalzone/ansi-tokenize": "^0.2.3",
"ansi-styles": "^6.2.3",
"ansis": "^4.2.0",
"auto-bind": "^5.0.1",
"cli-truncate": "^5.1.1",
"es-toolkit": "^1.43.0",
"indent-string": "^5.0.0",
"mitt": "^3.0.1",
"react-reconciler": "^0.33.0",
"slice-ansi": "^7.1.2",
"string-width": "^8.1.0",
"taffy-layout": "^2.0.3",
"tslint": "^5.20.1",
"type-fest": "^5.4.1",
"widest-line": "^5.0.0",
"wrap-ansi": "^9.0.2"
},
"peerDependencies": {
"@types/react": ">=19.0.0",
"react": ">=19.0.0",
"react-devtools-core": ">=7.0.0"
},
"typings": "./lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@sinonjs/fake-timers": "^15.1.0",
"@types/bun": "^1.3.6",
"@types/react-reconciler": "^0.32.3",
"@types/sinon": "^21.0.0",
"@types/ws": "^8.18.1",
"boxen": "^8.0.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"delay": "^7.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"ink": "^6.7.0",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"sinon": "^21.0.1",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript-eslint": "^8.53.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md,yaml,yml}": "prettier --write"
}
}