-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 878 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 878 Bytes
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
{
"name": "@resms/sdk",
"version": "0.8.1",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "biome lint .",
"format": "biome format . --write",
"check-format": "biome format . --check",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "Node.js library for ReSMS API",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"directories": {
"test": "test"
}
}