-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "@crystallize/js-api-client",
"license": "MIT",
"version": "3.2.0",
"type": "module",
"author": "Crystallize <hello@crystallize.com> (https://crystallize.com)",
"contributors": [
"Sébastien Morel <sebastien@crystallize.com>",
"Dhairya Dwivedi <dhairya@crystallize.com>"
],
"scripts": {
"watch": "tsc -W",
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/CrystallizeAPI/js-api-client.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.10.9",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"json-to-graphql-query": "^2.2.5",
"mime-lite": "^1.0.3",
"tiny-invariant": "^1.3.3",
"zod": "^3.23.8"
},
"browser": {
"fs": false,
"node:http2": false,
"http2": false
}
}