-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1009 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
39
40
41
42
43
44
{
"name": "@superpost/sdk",
"type": "module",
"version": "1.0.1",
"description": "SuperPost SDK for TS/JS",
"author": "SuperPost <hello@superpost.dev>",
"license": "MIT",
"homepage": "https://superpost.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/superpost/sdk.git"
},
"bugs": {
"url": "https://github.com/superpost/sdk/issues"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@types/node": "^25.6.2",
"bumpp": "^11.1.0",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts"
}