-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "lazerpay-checkout",
"version": "2.0.0",
"description": "Lazerpay Checkout 2.0",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build --ws --if-present",
"dev": "npm run dev --w=@lazerpay-checkout/core & npm run dev --w=@lazerpay-checkout/ui",
"dev:html": "npm run dev --w=html-example",
"lint": "eslint .",
"prettier": "prettier --check .",
"typecheck": "npm run typecheck --ws --if-present",
"new-version": "lerna version --no-git-tag-version --exact",
"pre-publish": "npm run lint; npm run typecheck; npm run prettier; npm run build; npm run new-version",
"npm-publish:latest": "lerna exec -- npm publish --no-private --access public --tag latest",
"npm-publish:canary": "lerna exec -- npm publish --no-private --access public --tag canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LazerPay-Finance/checkout-v2.git"
},
"keywords": [
"Checkout",
"SDK",
"Lazerpay",
"Payments",
"Web3"
],
"author": "Njoku Emmanuel",
"license": "MIT",
"bugs": {
"url": "https://github.com/LazerPay-Finance/checkout-v2/issues"
},
"homepage": "https://github.com/LazerPay-Finance/checkout-v2#readme",
"devDependencies": {
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"esbuild": "0.17.3",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"lerna": "^6.4.1",
"prettier": "2.8.3",
"rollup": "3.10.0",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-lit-css": "4.0.1",
"rollup-plugin-minify-html-literals": "1.2.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"workspaces": [
"packages/core",
"packages/ui",
"packages/html",
"examples/html"
]
}