Template of Type script library
Some checks failed
CI / build (push) Failing after 20s

This commit is contained in:
Andrey Kernichniy 2026-03-03 21:52:28 +07:00
commit 22fa4c6df4
18 changed files with 1511 additions and 0 deletions

26
package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "template-of-lib-repo",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"build": "npm run clean && tsc && npm run create-package",
"create-package": "node ./scripts/create-package",
"clean": "rimraf dist",
"prettier:check": "prettier --check \"./lib/src/**/*.*\"",
"prettier:fix": "prettier --write \"./lib/src/**/*.*\"",
"lint": "eslint lib/src/**/*.ts",
"prepare": "husky",
"test": "echo test"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.1",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.3"
}
}