-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "@stringpay/sdk",
"version": "0.2.3",
"main": "./src/index.ts",
"license": "Apache-2.0",
"description": "String Checkout SDK",
"author": "string.xyz",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"bundle": "tsup",
"dev:types": "yarn build:types -w",
"compile:lib": "tsup --format esm,cjs",
"build:lib": "yarn compile:lib --minify",
"build": "yarn lint && yarn build:lib",
"prepublish": "yarn build",
"release": "npm run build && npm publish",
"lint": "eslint .",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsup": "^7.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@fingerprintjs/fingerprintjs-pro": "^3.8.1",
"dotenv": "^16.3.1",
"redaxios": "0.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/String-xyz/string-sdk.git"
},
"bugs": {
"url": "https://github.com/String-xyz/string-sdk/issues"
},
"homepage": "https://string.xyz"
}