-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "letmecode",
"version": "0.1.0",
"description": "Provider-based terminal usage dashboard for LetMeCode.",
"author": "devforth.io",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"type": "commonjs",
"bin": "./bin/letmecode.js",
"files": [
"bin",
"dist",
"ink-app/dist",
"ink-app/package.json"
],
"engines": {
"node": ">=14.16"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true }); require('node:fs').rmSync('ink-app/dist', { recursive: true, force: true });\"",
"build": "npm run clean && tsc -p tsconfig.json && tsc -p ink-app/tsconfig.json",
"prepack": "npm run build",
"prestart": "npm run build",
"start": "node ./bin/letmecode.js",
"pretest": "npm run build",
"smoke": "node ./bin/letmecode.js",
"test": "node --test ink-app/test/*.test.mjs"
},
"keywords": [
"cli",
"ink",
"npx",
"typescript"
],
"dependencies": {
"ink": "4.4.1",
"react": "18.3.1"
},
"devDependencies": {
"@types/node": "^24.0.7",
"@types/react": "^18.3.24",
"typescript": "^5.8.3"
}
}