-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "@wtx-labs/woocommerce-api-client",
"version": "1.0.0",
"description": "TypeScript client for WooCommerce REST API with full type support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [
"woocommerce",
"api",
"client",
"typescript",
"ecommerce",
"wordpress",
"rest",
"api-client",
"wtx-labs"
],
"author": "WTX Labs Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wtx-labs/woocommerce-api-client-typescript.git"
},
"bugs": {
"url": "https://github.com/wtx-labs/woocommerce-api-client-typescript/issues"
},
"homepage": "https://github.com/wtx-labs/woocommerce-api-client-typescript#readme",
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}