-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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
{
"name": "cpp-project",
"version": "1.0.0",
"description": "A CLI based Weather Application made in C++ and TypeScript",
"main": "dist/fetchWeather.js",
"scripts": {
"dev": "npx ts-node src/fetchWeather.ts",
"start": "node dist/fetchWeather.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deadshotofficial/weather-app-cpp.git"
},
"keywords": [
"Weather",
"College",
"Project",
"C++",
"TypeScript"
],
"author": "Riddhiraj",
"license": "ISC",
"bugs": {
"url": "https://github.com/deadshotofficial/weather-app-cpp/issues"
},
"homepage": "https://github.com/deadshotofficial/weather-app-cpp#readme",
"devDependencies": {
"@types/node": "^22.14.1",
"@types/node-fetch": "^2.6.12",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.8.4",
"node-fetch": "^2.7.0"
}
}