This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "paypax",
"version": "1.7.6",
"description": "Library for automate PayPay operations",
"scripts": {
"format": "prettier --write ./src/*.{ts,tsx} ./src/**/*.{ts,tsx}",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
"build": "rimraf dist && tsx ./build.ts",
"build:deno": "rimraf deno_dist && denoify && tsx ./deno_build.ts",
"build:all": "pnpm build && pnpm build:deno",
"release": "pnpm build:all && pnpm publish --no-git-checks",
"release:all": "pnpm build:all && pnpm publish --no-git-checks && git add * && git commit -m 'auto: release' && git push",
"test": "vitest --run",
"test:type": "tsc --noEmit"
},
"keywords": [
"paypay",
"paypayjs",
"paypax"
],
"author": "ame_x",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@hono/eslint-config": "^0.0.3",
"denoify": "^1.6.9",
"esbuild": "^0.15.12",
"glob": "^8.1.0",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"vitest": "^1.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/EdamAme-x/paypax.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "github.com/EdamAme-x/paypax",
"dependencies": {
"arg": "^5.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/types",
"type": "module"
}