-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
48
49
50
51
52
53
54
{
"name": "@barrymun/stock-ticker",
"description": "Command-line tool which provides real-time financial information.",
"license": "MIT",
"version": "1.0.3",
"author": "barrymun",
"module": "src/index.ts",
"type": "module",
"bin": {
"sticker": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/barrymun/stock-ticker.git"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write \"src/**/*.ts\""
],
"tests/**/*.ts": [
"prettier --write \"tests/**/*.ts\""
]
},
"scripts": {
"prepare": "husky install",
"lint": "bun eslint src/**/*.ts && bun eslint tests/**/*.ts",
"test": "bun test --preload ./tests/setup.ts",
"build": "rm -rf dist && tsc --project ./tsconfig.build.json && bun post-build.js",
"sample-cmd": "bun run src/index.ts -s AAPL GOOG AFRM VOO AMZN NVDA SNOW TSLA AMD META MSFT",
"sample-cmd-2": "bun dist/index.js -s AAPL GOOG AFRM VOO AMZN NVDA SNOW TSLA AMD META MSFT"
},
"dependencies": {
"blessed": "^0.1.81",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/figlet": "^1.5.8",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"bun-types": "^1.0.20",
"eslint": "^8.55.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}