-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "pesaqr",
"version": "1.0.3",
"description": "QR Code Banner to scan and pay M-PESA for any Till/Paybill Number via the M-PESA app",
"keywords": [
"M-PESA",
"QR Code",
"Paybill",
"Till",
"Payment"
],
"repository": {
"type": "git",
"url": "https://github.com/DavidAmunga/pesaqr.git"
},
"author": "David Amunga <david@davidamunga.com>",
"license": "MIT",
"main": "./dist/pesaqr.js",
"module": "./dist/pesaqr.js",
"dependencies": {
"lit": "^3.2.1",
"qrcode-generator": "^1.4.4",
"vite": "^5.4.8"
},
"types": "./dist/pesaqr.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/pesaqr.js",
"types": "./dist/pesaqr.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc",
"build:wordpress": "vite build --config vite.config.wordpress.js",
"build:wordpress-plugin": "npm run build:wordpress && cp dist/wordpress/pesaqr.mjs woocommerce-pesaqr/assets/js/pesaqr.js",
"prepare": "npm run build",
"sync": "./sync-to-wp.sh",
"watch": "./watch-and-sync.sh",
"dev:wp": "./dev.sh",
"changeset": "changeset",
"version": "changeset version && node scripts/update-wp-version.js",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/qrcode-generator": "^0.0.16",
"@webcomponents/webcomponentsjs": "^2.8.0",
"typescript": "^5.7.3"
},
"packageManager": "pnpm@10.17.0+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
}