-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 858 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 858 Bytes
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
{
"name": "c7-api",
"version": "1.1.0",
"description": "JavaScript wrapper for the Commerce7 API - Works in Node.js and browsers",
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js"
},
"./client": {
"import": "./src/client.js"
},
"./adapters/node": {
"import": "./src/adapters/node/index.js"
},
"./adapters/web-api": {
"import": "./src/adapters/web-api/index.js"
}
},
"scripts": {},
"keywords": [
"commerce7",
"api",
"wrapper",
"browser",
"node",
"v1"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.5.0"
},
"devDependencies": {
"gh-pages": "^6.1.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"README.md"
]
}