-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 964 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
40
{
"name": "simpl.fi-api-client",
"version": "1.0.89",
"description": "A TypeScript client for interacting with the Simpli.fi API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun ./src/index.ts",
"build": "bun build ./index.ts --outdir ./dist --target node && tsc",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"keywords": [
"simplifi",
"api",
"client",
"typescript"
],
"author": "Richetechguy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JonathanRiche/simpli.fi-api.git"
},
"bugs": {
"url": "https://github.com/JonathanRiche/simpli.fi-api/issues"
},
"homepage": "https://github.com/JonathanRiche/simpli.fi-api#readme",
"devDependencies": {
"@types/papaparse": "^5.3.10",
"bun-types": "^1.1.29",
"typescript": "^5.0.0"
}
}