-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "kakaotalk-chat-parser",
"version": "0.1.1",
"description": "카카오톡 대화 내보내기 파일(.txt) 파서 / Parse KakaoTalk chat export files",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"pack:check": "npm pack --dry-run",
"release": "npm version patch && git push --follow-tags && npm publish",
"prepublishOnly": "pnpm test && pnpm build"
},
"keywords": [
"kakaotalk",
"chat",
"parser",
"kakao"
],
"author": "verycosy",
"homepage": "https://github.com/verycosy/kakaotalk-chat-parser#readme",
"bugs": "https://github.com/verycosy/kakaotalk-chat-parser/issues",
"repository": {
"type": "git",
"url": "https://github.com/verycosy/kakaotalk-chat-parser.git"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.14.0",
"license": "MIT",
"devDependencies": {
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}