-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "solapi",
"version": "6.0.1",
"description": "SOLAPI SDK for Node.js(Server Side Only)",
"keywords": [
"solapi",
"sms",
"lms",
"mms",
"kakao alimtalk",
"sdk",
"korean sms"
],
"homepage": "https://solapi.com",
"bugs": {
"url": "https://github.com/solapi/solapi-nodejs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solapi/solapi-nodejs.git"
},
"license": "MIT",
"author": {
"name": "SOLAPI Team",
"email": "contact@solapi.com"
},
"type": "commonjs",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"/dist"
],
"scripts": {
"build": "pnpm lint && tsup",
"docs": "typedoc --entryPointStrategy expand ./src",
"lint": "biome check --write",
"lint:ci": "biome check",
"typecheck": "tsc --noEmit",
"dev": "tsup --watch",
"test": "vitest run",
"test:ci": "vitest run --exclude '**/*.e2e.test.ts'",
"test:watch": "vitest"
},
"dependencies": {
"date-fns": "^4.1.0",
"effect": "^3.21.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@effect/language-service": "^0.85.1",
"@effect/vitest": "^0.29.0",
"@types/node": "^25.5.2",
"dotenv": "^17.4.1",
"tsup": "^8.5.1",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=18"
}
}