-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@heptacode/military-letter",
"version": "0.3.1",
"description": "Unofficial library to send letters to ROK Armed Forces Training Center",
"keywords": [
"airforce",
"army",
"military",
"thecamp"
],
"homepage": "https://github.com/heptacode/military-letter#readme",
"bugs": {
"url": "https://github.com/heptacode/military-letter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heptacode/military-letter.git"
},
"license": "MIT",
"author": "heptacode <[email protected]> (https://hyunwoo.kim)",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"workspaces": [
"examples"
],
"scripts": {
"build": "node .scripts/build.mjs",
"lint": "eslint --cache \"{src,test}/**/*.ts\"",
"test": "./.scripts/test.sh",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"dependencies": {
"@heptacode/http-request": "^0.2.1",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"https": "^1.0.0",
"node-html-parser": "^6.1.0",
"picocolors": "^1.0.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@jest/types": "^29.0.3",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"esbuild": "^0.15.11",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]"
}