-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.35 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
{
"name": "connect-sdk-client-js",
"version": "6.0.4",
"description": "The JavaScript based client SDK that can be used for client to server communication between you and the Worldline Global Collect platform",
"source": "./src/index.ts",
"module": "./dist/connect-sdk-client-js.js",
"main": "./dist/connect-sdk-client-js.cjs",
"unpkg": "./dist/connect-sdk-client-js.umd.js",
"homepage": "https://github.com/Worldline-Global-Collect/connect-sdk-client-js#readme",
"amdName": "connectsdk",
"creator": "Worldline Global Collect",
"exports": {
"types": "./dist/types/src/index.d.ts",
"require": "./dist/connect-sdk-client-js.cjs",
"default": "./dist/connect-sdk-client-js.js"
},
"files": [
"dist"
],
"types": "dist/types/src/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Worldline-Global-Collect/connect-sdk-client-js.git"
},
"bugs": {
"url": "https://github.com/Worldline-Global-Collect/connect-sdk-client-js/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Worldline Connect",
"scripts": {
"watch": "microbundle watch",
"build": "microbundle build -f umd,esm,cjs --target web --sourcemap false",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"test": "vitest --config ./src/__tests__/unit/vitest.config.ts",
"test:integration": "vitest --config ./src/__tests__/integration/vitest.config.ts",
"tsc": "tsc --noEmit -p .",
"prepare": "husky install",
"typedoc": "typedoc --plugin typedoc-plugin-missing-exports ./src/index.ts"
},
"dependencies": {
"@types/applepayjs": "^14.0.8",
"@types/googlepay": "^0.7.6",
"@types/node-forge": "^1.3.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"connect-sdk-nodejs": "^4.14.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"microbundle": "^0.15.1",
"node-forge": "^1.3.1",
"prettier": "^3.3.3",
"typedoc": "^0.25.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "5.3.3",
"vitest": "^2.1.2"
},
"volta": {
"node": "20.11.0",
"npm": "10.4.0"
}
}