-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 890 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
{
"name": "learn-typescript",
"version": "1.0.0",
"description": "Typescript is a **superset of JavaScript** which is developed and maintain by Microsoft. It adds **static typing** to JavaScript, meaning you can define types for variables, function parameters, return values, and more. TypeScript code compiles down to plain JavaScript that can run in any browser or JavaScript environment.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaviCoderWallah/TypeScript-Course.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RaviCoderWallah/TypeScript-Course/issues"
},
"homepage": "https://github.com/RaviCoderWallah/TypeScript-Course#readme",
"devDependencies": {
"typescript": "^6.0.3"
}
}