-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.75 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "inflow-node",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Official Node.js SDKs for the InFlow payments platform. Multi-product monorepo.",
"repository": {
"type": "git",
"url": "git+https://github.com/inflowpayai/inflow-node.git"
},
"bugs": {
"url": "https://github.com/inflowpayai/inflow-node/issues"
},
"homepage": "https://github.com/inflowpayai/inflow-node#readme",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@11.1.3",
"scripts": {
"build": "turbo run build",
"verify": "pnpm format && pnpm typecheck && pnpm lint && pnpm test && pnpm tap:conformance && pnpm coverage:changed && pnpm typedoc && pnpm build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"update:all": "pnpm update --recursive --depth Infinity",
"update:simple": "pnpm update --recursive --depth Infinity \"!mppx\" \"!@mppx/*\" \"!@x402/*\"",
"coverage:changed": "node scripts/check-changed-coverage.mjs",
"posttest": "node scripts/clean-vitest-artifacts.mjs",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"typedoc": "typedoc",
"conformance": "pnpm mpp:conformance && pnpm tap:conformance",
"conformance:update": "pnpm mpp:conformance:update",
"mpp:conformance": "node scripts/mpp-conformance.mjs",
"mpp:conformance:update": "node scripts/mpp-conformance.mjs --update",
"tap:conformance": "node scripts/tap-conformance.mjs",
"check-exports": "node scripts/check-exports.mjs",
"verify-publish": "node scripts/verify-publish.mjs",
"check-publish": "pnpm build && pnpm check-exports && pnpm verify-publish",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && pnpm check-exports && pnpm verify-publish && changeset publish",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.31.1",
"@types/node": "^24.13.3",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"@vitest/coverage-v8": "^5.0.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jsdoc": "^50.8.0",
"fast-check": "^3.23.2",
"husky": "^9.1.7",
"msw": "^2.15.0",
"prettier": "^3.9.6",
"prettier-plugin-jsdoc": "^1.8.1",
"tsup": "^8.5.1",
"turbo": "^2.10.12",
"typedoc": "^0.28.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.2",
"vitest": "^5.0.0"
}
}