-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 817 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
{
"name": "@dittofeed/sdk-node",
"version": "0.4.0",
"description": "Dittofeed's node sdk.",
"main": "dist/cjs/index.js",
"module": "dist/ejs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dittofeed/sdk-node.git"
},
"author": "max@dittofeed.com",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.1.0"
},
"packageManager": "yarn@4.1.1",
"dependencies": {
"@dittofeed/sdk-js-base": "^0.4.3",
"cross-fetch": "^4.0.0",
"uuid": "^11.0.3"
}
}