-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "@crystallize/js-storefrontaware-utils",
"license": "MIT",
"type": "module",
"version": "3.0.0",
"author": "Crystallize <[email protected]> (https://crystallize.com)",
"contributors": [
"Sébastien Morel <[email protected]>"
],
"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-storefrontaware-utils.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.14.9",
"typescript": "^5.5.2",
"vitest": "^1.6.0",
"tsup": "^8.1.0"
},
"dependencies": {
"json-to-graphql-query": "^2.2.5",
"@crystallize/js-api-client": "^3.0.0"
}
}