-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "unisender-ts",
"description": "Typescript Interface for Unisender GO web API",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Vladimir Zhelvis",
"email": "[email protected]",
"url": "https://github.com/zhelvis"
},
"homepage": "https://zhelvis.github.io/unisender-ts/index.html",
"repository": "https://github.com/zhelvis/unisender-ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/types/index.d.ts"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"scripts": {
"clear": "rm -rf ./dist",
"build": "bun run clear && bun run --bun rollup -c rollup.config.js",
"format": "biome format --write ./src",
"lint": "biome lint --write ./src",
"docs": "typedoc --out ./docs ./src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/bun": "latest",
"rollup": "^4.22.0",
"tslib": "^2.7.0",
"typedoc": "^0.26.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"trustedDependencies": [
"@biomejs/biome"
]
}