-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
60
61
62
63
64
65
66
67
68
{
"name": "solidjs-paystack",
"version": "0.2.1",
"description": "Paystack payment gateway for SolidJS",
"homepage": "https://github.com/rnwonder/solidjs-paystack",
"repository": {
"type": "git",
"url": "https://github.com/rnwonder/solidjs-paystack.git"
},
"bugs": {
"url": "https://github.com/rnwonder/solidjs-paystack/issues"
},
"keywords": [
"paystack",
"solidjs paystack",
"solid paystack",
"solid",
"solidjs",
"solid-js paystack"
],
"sideEffects": false,
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index/index.d.ts",
"module": "./dist/index/index.js",
"main": "./dist/index/index.common.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index/index.d.ts",
"import": "./dist/index/index.js",
"require": "./dist/index/index.common.js",
"node": "./dist/index/index.js",
"browser": {
"import": "./dist/index/index.js",
"require": "./dist/index/index.common.js"
}
}
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "rollup -c ./rollup.config.js",
"test": "exit 0",
"lib": "pnpm build && npm publish"
},
"license": "MIT",
"author": "rnwonder",
"devDependencies": {
"rollup": "^3.26.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-preset-solid": "^2.0.1",
"solid-devtools": "^0.27.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-solid": "^2.7.0"
},
"peerDependencies": {
"solid-js": "^1.7.6"
},
"publishConfig": {
"@rnwonder:registry": "https://npm.pkg.github.com",
"access": "public"
},
"private": false
}