-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
{
"name": "@uphold/topper-web-sdk",
"version": "0.9.0",
"description": "Seamless integration of Topper on Web applications",
"author": "Uphold",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"repository": {
"type": "git",
"url": "[email protected]:uphold/topper-web-sdk.git"
},
"homepage": "https://github.com/uphold/topper-web-sdk#readme",
"bugs": {
"url": "https://github.com/uphold/topper-web-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsup",
"lint": "eslint . --ext .ts,.js",
"prepare": "husky install",
"release": "release-it"
},
"dependencies": {
"query-string": "^6.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@uphold/github-changelog-generator": "^3.4.0",
"eslint-config-uphold": "^5.0.1",
"eslint": "~8.52.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^2.8.7",
"release-it": "^17.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{ts,js}": "yarn lint"
},
"keywords": [
"crypto",
"payment",
"ramp",
"sdk",
"topper",
"web"
],
"types": "dist/index.d.ts",
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}