-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 914 Bytes
/
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
{
"name": "@simplr-sh/swapi-sdk",
"description": "A simple Typescript SDK for the Simplr's Star Wars API (SWAPI) service that provides a simple, typesafe interface to interact with the API.",
"repository": {
"type": "git",
"url": "https://github.com/simplr-sh/swapi-sdk"
},
"keywords": [
"swapi",
"star wars",
"api",
"sdk",
"typescript"
],
"license": "MIT",
"version": "0.1.0",
"private": false,
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"module": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts --minify",
"dev": "tsup -d",
"lint": "tsc"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@simplr-sh/swapi-sdk": "^0.1.0",
"@types/bun": "latest",
"tsup": "^8.3.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}