Skip to content

Commit

Permalink
Prepare package for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
williamgrosset committed Feb 6, 2024
1 parent b46e392 commit b0e14d8
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
{
"name": "teslo",
"version": "0.0.0",
"description": "Elo rating system",
"description": "Elo rating calculator",
"author": "William Grosset",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamgrosset/teslo"
},
"keywords": [
"elo",
"rating",
"calculator",
"multiplayer",
"chess"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config",
"clean": "rm -rf dist",
"clean": "rm -rf ./dist",
"start": "node dist/index.js",
"test": "jest"
"test": "jest",
"prepublish": "pnpm clean && pnpm build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
Expand Down

0 comments on commit b0e14d8

Please sign in to comment.