-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "@alphalawless/vindi-nodejs-unofficial",
"version": "0.2.0",
"description": "Vindi SDK NodeJS Unofficial",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "v20"
},
"scripts": {
"check:ts": "npx tsc --noEmit",
"build": "rm -rf dist && tsc --build && tsc-alias -p tsconfig.json",
"test": "vitest run --silent",
"test:ci:ui": "vitest --open --silent --ui --coverage.enabled=true",
"test:ci": "bun run test:coverage",
"test:verbose": "vitest --run --reporter verbose",
"test:coverage": "vitest --run --coverage",
"test:uni": "vitest watch --project unit-test",
"test:int": "vitest watch --project integration-test",
"test:staged": "vitest related --run --passWithNoTests",
"lint:fix": "biome check --apply ./src/**/*",
"lint": "biome check ./src",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphalawless/vindi-nodejs-unofficial.git"
},
"keywords": [
"vindi",
"payment",
"checkout",
"sdk",
"integration"
],
"files": [
"dist"
],
"author": "Alpha Vylly <[email protected]>",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.2",
"git-commit-msg-linter": "5.0.8",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"tsc-alias": "1.8.10",
"tsx": "4.19.2",
"typescript": "5.7.2"
}
}