-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "oil-terminal",
"version": "0.0.5",
"license": "MIT",
"author": "mysteryven",
"description": "Manage and navigate file system easily from your terminal.",
"bin": {
"oil": "bin/oil.mjs"
},
"type": "module",
"scripts": {
"dev": "tsx src/cli.tsx",
"build": "unbuild",
"lint": "oxlint -D correctness"
},
"files": [
"dist",
"bin"
],
"dependencies": {
"fs-extra": "^11.2.0",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"meow": "^11.0.0",
"react": "^18.2.0",
"tsx": "^4.19.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.4",
"@types/react": "^18.0.32",
"chalk": "^5.2.0",
"oxlint": "^0.9.9",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"unbuild": "^2.0.0"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}