-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "squadco-modal-js",
"version": "0.0.3",
"description": "Frontend wrapper for Squadco payment modal",
"repository": {
"type": "git",
"url": "git+https://github.com/sonkiee/squadco-modal-js.git"
},
"homepage": "https://github.com/sonkiee/squadco-modal-js#readme",
"bugs": {
"url": "https://github.com/sonkiee/squadco-modal-js/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --watch --format esm,cjs --dts",
"prepare": "npm run build",
"example": "cd example && npm install && npm start"
},
"keywords": [
"squadco",
"payment",
"modal",
"checkout",
"react",
"javascript",
"typescript",
"frontend"
],
"author": "Kennedy Sunday <annagu.kennedy@gmail.com>",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}