-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
{
"name": "antilopay-node",
"version": "1.1.0",
"description": "Node.js SDK for Antilopay payment processor.",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "tsc",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"test": "vitest",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phyziyx/antilopay-node.git"
},
"keywords": [
"antilopay"
],
"publishConfig": {
"access": "public"
},
"author": "phyziyx",
"license": "MIT",
"bugs": {
"url": "https://github.com/phyziyx/antilopay-node/issues"
},
"homepage": "https://github.com/phyziyx/antilopay-node#readme",
"dependencies": {
"axios": "^1.13.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.4",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^4.0.16",
"prettier": "^3.7.4",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"type": "module"
}