-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.47 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
{
"name": "smartypay-client-sdk",
"version": "1.3.0",
"description": "Simple library for show a custom payment button in any website",
"author": "Evgeny Dolganov <[email protected]>",
"repository": "https://github.com/smarty-pay/smartypay-client-sdk",
"license": "MIT",
"keywords": [
"typescript",
"smartypay",
"crypto"
],
"main": "./dist/esbuild/index.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest --passWithNoTests",
"clean": "rm -rf dist build package",
"docs": "typedoc --entryPoints src/index.ts",
"build": "npm run clean && npm run esbuild-browser",
"esbuild-browser": "node ./build.js"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.4.2",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"esbuild": "^0.23.1",
"esbuild-plugin-d.ts": "^1.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
}
}