This repository was archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "@devoxa/paddle-sdk",
"description": "An SDK to interface with the API and webhooks from paddle.com",
"version": "0.4.3",
"main": "dist/src/index.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/paddle-sdk"
},
"scripts": {
"test": "jest",
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "eslint --ignore-path='.gitignore' '{src,tests}/**/*.ts'",
"build": "rm -rf dist/ && tsc",
"preversion": "yarn build",
"generate": "sh generate.sh"
},
"eslintConfig": {
"extends": "@devoxa",
"rules": {
"@typescript-eslint/camelcase": "off"
}
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"@devoxa/aes-encryption": "2.0.0",
"dayjs": "1.11.13",
"form-data": "4.0.1",
"php-serialize": "4.1.1"
},
"devDependencies": {
"@devoxa/eslint-config": "3.0.11",
"@devoxa/flocky": "2.2.0",
"@devoxa/prettier-config": "2.0.3",
"@swc/core": "1.9.3",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "20.9.5",
"eslint": "8.57.1",
"jest": "29.7.0",
"prettier": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}