-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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
{
"name": "notchpay-client",
"version": "0.3.0-beta",
"description": "The notchpay javascript client for your saas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "vitest"
},
"export": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"keywords": [
"Notchpay",
"Notchpay client"
],
"repository": {
"type": "git",
"url": "https://github.com/danofred00/notchpay-client"
},
"bugs": {
"url": "https://github.com/danofred00/notchpay-client/issues"
},
"homepage": "https://github.com/danofred00/notchpay-client#readme",
"files": [
"dist"
],
"author": "Daniel Leussa (https://github.com/danofred00)",
"license": "ISC",
"packageManager": "pnpm@10.8.1",
"devDependencies": {
"@types/node": "^22.15.3",
"dotenv": "^16.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"dependencies": {
"axios": "^1.9.0"
}
}