-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.83 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@hyperse/paypal-node-sdk",
"version": "2.0.5",
"description": "NodeJS SDK for PayPal Checkout APIs",
"keywords": [
"hyperse",
"esm",
"paypal",
"paypal nodejs",
"paypal sdk"
],
"homepage": "[email protected]:hyperse-io/paypal-node-sdk.git",
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/paypal-node-sdk.git"
},
"author": {
"name": "Yingchun Tian",
"url": "https://github.com/tianyingchun"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./orders": {
"import": "./dist/orders/index.js",
"types": "./dist/orders/index.d.ts"
},
"./payments": {
"import": "./dist/payments/index.js",
"types": "./dist/payments/index.d.ts"
},
"./webhook": {
"import": "./dist/webhook/index.js",
"types": "./dist/webhook/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"./index.js",
"./dist/"
],
"workspaces": [
".",
"samples"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json ",
"clean": "rimraf --no-glob ./dist ./coverage ./.eslintcache ./tsconfig.tsbuildinfo",
"test": "vitest run --dir tests/",
"test-task": "vitest run",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx,.graphql --fix",
"changeset": "changeset",
"version": "changeset version",
"release": "yarn run build && changeset publish",
"cz": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"@mswjs/data": "^0.16.2",
"@paypal/paypalhttp": "^1.0.1",
"@types/paypal__paypalhttp": "^1.0.3"
},
"devDependencies": {
"@changesets/changelog-git": "0.2.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@hyperse/eslint-config-hyperse": "^1.2.7",
"@swc/core": "1.9.2",
"@types/node": "22.9.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.5",
"eslint": "^9.15.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"minimist": "1.2.8",
"msw": "^2.6.5",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"swc-unplugin-ts": "1.0.3",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}