-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "comcigan.ts",
"version": "0.0.0-development",
"description": "A Comcigan parser written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/star0202/comcigan.ts"
},
"scripts": {
"build": "rimraf dist && tsc",
"lint": "biome check",
"release": "semantic-release",
"prepack": "pnpm build",
"test": "node -r ts-node/register --test tests/*.test.ts"
},
"keywords": ["comcigan", "parser", "typescript", "school", "korean"],
"author": "Starcea <[email protected]>",
"license": "LGPL-3.0-or-later",
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"undici": "^6.20.1"
},
"release": {
"branches": ["release"]
}
}