-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 970 Bytes
/
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
{
"name": "@crystallize/import-export-sdk",
"version": "1.0.3",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
"watch": "tsc -W",
"test": "vitest run"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/assert": "^1.5.10",
"@types/node": "^20.14.9",
"assert": "^2.1.0",
"bson": "^6.8.0",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@crystallize/js-api-client": "^3.0.0",
"@crystallize/schema": "^1.0.0",
"zod": "^3.23.8"
}
}