-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "sitecore-personalize-tenant-sdk",
"version": "0.4.6",
"description": "The Sitecore Personalize Tenant/Admin API SDK",
"main": "dist/client.js",
"type": "module",
"files": [
"dist",
"package.json"
],
"types": "dist/client.d.ts",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:test": "tsup src/**/*.spec.ts --outDir dist/tests",
"test": "npm run build:test && mocha --config ./.mocharc.json"
},
"engines": {
"node": ">=18.18.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylanyoung-dev/sitecore-cdp-tenant-sdk.git"
},
"keywords": [
"Sitecore",
"Personalize",
"Typescript",
"SDK"
],
"author": "Dylan Young",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/dylanyoung-dev/sitecore-cdp-tenant-sdk/issues"
},
"homepage": "https://github.com/dylanyoung-dev/sitecore-cdp-tenant-sdk#readme",
"dependencies": {
"nock": "^13.5.4",
"node-fetch": "3.2.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "18.6.3",
"chai": "^5.1.1",
"mocha": "^10.6.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^4.7.4"
}
}