-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.6 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
{
"name": "@airwallex/payouts-web-sdk",
"version": "1.5.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"description": "Payouts web SDK",
"author": "Zihao Li",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/airwallex/payouts-web-sdk.git"
},
"homepage": "https://github.com/airwallex/payouts-web-sdk#readme",
"bugs": {
"url": "https://github.com/airwallex/payouts-web-sdk/issues"
},
"keywords": [
"Airwallex",
"Payouts",
"SDK",
"widget"
],
"scripts": {
"dev": "yarn build --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "eslint src/**",
"test": "jest",
"release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@gtpn/eslint-config-progressive": "^0.6.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"eslint": "^8.33.0",
"husky": "^8.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.0",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 80
},
"lint-staged": {
"src/**/*.{js?(x),ts?(x)}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"@gtpn/eslint-config-progressive"
]
}
}