-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@otters/monzo",
"description": "Monzo API wrapper",
"version": "2.1.2",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"module": "./dist/index.js",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/otters/monzo"
},
"author": "Alistair Smith <hi@alistair.sh>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/alii"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs && attw --pack .",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint ./src/**/*.ts --fix",
"test": "uvu -r tsm",
"release": "yarn test && yarn build && yarn npm publish"
},
"bugs": {
"url": "https://github.com/otters/monzo/issues"
},
"homepage": "https://github.com/otters/monzo#readme",
"files": [
"dist",
"package.json"
],
"keywords": [
"monzo",
"api",
"client",
"sdk"
],
"packageManager": "yarn@4.0.2",
"dependencies": {
"alistair": "^1.5.6",
"pathcat": "^1.1.0",
"qs": "^6.11.2",
"urlcat": "^3.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.5",
"@types/qs": "^6.9.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"prettier": "^3.1.1",
"tsm": "^2.3.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
}
}