Skip to content

Commit 4cf6e36

Browse files
committed
init
Signed-off-by: Kirill Mokevnin <[email protected]>
0 parents  commit 4cf6e36

File tree

6 files changed

+472
-0
lines changed

6 files changed

+472
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
run:
2+
npx ts-node index.ts

index.ts

Whitespace-only changes.

package-lock.json

Lines changed: 343 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "typescript-package",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"devDependencies": {
7+
"ts-node": "^10.9.1",
8+
"typescript": "^4.8.3"
9+
},
10+
"scripts": {
11+
"test": "echo \"Error: no test specified\" && exit 1"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/hexlet-boilerplates/typescript-package.git"
16+
},
17+
"author": "",
18+
"license": "ISC",
19+
"bugs": {
20+
"url": "https://github.com/hexlet-boilerplates/typescript-package/issues"
21+
},
22+
"homepage": "https://github.com/hexlet-boilerplates/typescript-package#readme"
23+
}

0 commit comments

Comments
 (0)