-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 921 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
41
42
43
{
"name": "@banksnussman/venmo",
"version": "0.1.22",
"description": "Interact with Venmo from Typescript",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"browser": "./dist/index.global.js",
"repository": {
"type": "git",
"url": "https://github.com/bnussman/venmo.git"
},
"scripts": {
"build": "tsup",
"debug": "playwright test --headed",
"dev": "tsup --watch"
},
"keywords": [
"venmo",
"api"
],
"author": "Banks Nussman",
"volta": {
"node": "19.4.0"
},
"devDependencies": {
"@playwright/test": "^1.32.2",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"playwright": "^1.32.2",
"uuid": "^9.0.0"
},
"files": [
"dist"
]
}