-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "@rye-api/rye-pay",
"version": "0.9.0",
"description": "This package contains the Rye payment client required to perform checkout using Rye Cart-API",
"repository": {
"type": "git",
"url": "https://github.com/rye-com/rye-pay"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"bundle": "mkdir -p public && browserify ./src/index.ts -p [ tsify --noImplicitAny ] -s rye > ./public/rye-pay.js",
"check-format": "prettier --check \"**/*.ts\"",
"format": "prettier --write \"**/*.ts\"",
"test": "echo \"There is no tests in this package\""
},
"author": "RYE",
"license": "ISC",
"devDependencies": {
"@types/applepayjs": "^14.0.3",
"@types/googlepay": "^0.7.5",
"@types/node": "^18.14.4",
"browserify": "^17.0.0",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"files": [
"dist/"
],
"dependencies": {
"tsify": "^5.0.4"
},
"volta": {
"node": "20.12.1",
"yarn": "1.22.22"
}
}