-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (38 loc) · 1.15 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
{
"name": "@selldone/sdk-backoffice",
"version": "1.8.18",
"private": false,
"type": "module",
"author": "Mehrdad Pajuhaan <[email protected]> (https://selldone.com)",
"description": "SDK for Selldone Backoffice API to connect and interact with Selldone API, enabling the creation of custom dashboards for your ecommerce with a serverless solution.",
"main": "index.ts",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"publish-npm": "npm publish --access public"
},
"bugs": {
"url": "https://github.com/selldone/backoffice-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selldone/backoffice-sdk.git"
},
"homepage": "https://selldone.com",
"license": "MIT",
"dependencies": {
"@selldone/core-js": "latest",
"axios": "^1.7.9",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}