-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "r-tui",
"version": "0.0.0",
"private": true,
"files": ["dist", "readme.md", "package.json"],
"description": "react terminal UI",
"scripts": {
"case-police": "case-police \"**/*.ts\" fix",
"dev": "pnpm run --parallel dev",
"es5": "pnpm run --parallel es5",
"build": "pnpm run -r build",
"example": "pnpm run --parallel dev",
"lint": "biome check --apply-unsafe ./",
"format": "biome format --write ./",
"lint:fix": "biome lint ./ --write --unsafe",
"test": "pnpm run --parallel test",
"clear": "rm -rf node_modules && pnpm -r exec rm -rf node_modules dist es5",
"clear-dist": "rm -rf dist es5 && pnpm -r exec rm -rf dist es5",
"release": "pnpm publish -r --access public",
"release-alpha": "pnpm publish -r --access public --tag alpha"
},
"keywords": ["TS", "React", "r-tui", "terminal"],
"author": "ahaoboy",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "^1.8.3",
"@chokidar-napi/chokidar": "0.1.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-reconciler": "^0.28.8",
"babel-minify": "^0.5.2",
"case-police": "^0.6.1",
"core-js": "^3.38.0",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"esbuild-plugin-solid": "^0.6.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"txiki-node-polyfill": "^0.1.1",
"vitest": "^1.6.0"
}
}