Compare commits

...

2 Commits

Author SHA1 Message Date
Arseniy Prosvirnin 5efb707394
Add package file and src folder
2 years ago
Arseniy Prosvirnin 92bd41dafc
Add gitignore file
2 years ago

2
.gitignore vendored

@ -0,0 +1,2 @@
node_modules
pnpm-lock.yaml

@ -0,0 +1,20 @@
{
"name": "gaterunner-core",
"version": "0.0.1",
"description": "core api for GateRunner card game",
"main": "index.js",
"scripts": {
"start": "ts-node src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"fp-ts": "^2.16.1"
},
"devDependencies": {
"semantic-release": "^22.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}

@ -0,0 +1 @@
console.log("hello");
Loading…
Cancel
Save