-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
47
48
49
50
{
"name": "@fwdmo/konnectjs",
"version": "0.1.1",
"description": "A minimal library for managing payments on Konnect.Network.",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "prettier -w src tests",
"test": "vitest run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Mondher Vallejo <pu1gxe4za@relay.firefox.com> (https://github.com/fwdmo)",
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/fwdmo/konnectjs.git"
},
"bugs": {
"url": "https://github.com/fwdmo/konnectjs/issues"
},
"homepage": "https://fwdmo.github.io/konnectjs/",
"dependencies": {
"ofetch": "^1.4.1"
}
}