-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (62 loc) · 1.8 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
56
57
58
59
60
61
62
63
{
"name": "@selldone/sdk-storefront",
"version": "1.8.18",
"private": false,
"author": "Mehrdad Pajuhaan <[email protected]> (https://selldone.com)",
"description": "A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"type": "module",
"scripts": {
"build": "tsc -p sdk-tsconfig.json",
"bundle": "rollup -c",
"clean": "tsc --build --clean",
"prepublishOnly": "yarn build && yarn bundle",
"publish-npm": "npm publish --access public"
},
"bugs": {
"url": "https://github.com/selldone/storefront-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selldone/storefront-sdk.git"
},
"homepage": "https://selldone.com",
"license": "MIT",
"keywords": [
"Selldone",
"eCommerce",
"JavaScript",
"Storefront",
"Selldone",
"SDK",
"WooCommerceAlternative",
"TypeScript",
"OpenSource"
],
"dependencies": {
"@selldone/core-js": "latest",
"axios": "^1.7.9",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"rollup": "^4.33.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}