feat: use semantic release

This commit is contained in:
Starcea 2024-06-28 00:21:45 +09:00
commit 0a2f382ced
No known key found for this signature in database
GPG key ID: B7A77E32374911E1
3 changed files with 2441 additions and 18 deletions

View file

@ -1,6 +1,6 @@
{
"name": "comcigan.ts",
"version": "0.1.0",
"version": "0.0.0-development",
"description": "A Comcigan parser written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@ -10,7 +10,8 @@
},
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint src --ignore-path .gitignore"
"lint": "eslint src --ignore-path .gitignore",
"release": "semantic-release"
},
"keywords": [
"comcigan",
@ -32,11 +33,17 @@
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"axios": "^1.7.2",
"iconv-lite": "^0.6.3"
},
"release": {
"branches": [
"release"
]
}
}