saleor-app-sdk-REDIS_APL/package.json

67 lines
1.6 KiB
JSON
Raw Normal View History

2022-05-24 20:16:49 +00:00
{
2022-05-26 12:16:30 +00:00
"name": "@saleor/app-sdk",
2022-07-14 12:42:16 +00:00
"version": "0.7.0",
2022-05-26 12:16:30 +00:00
"description": "SDK for building great Saleor Apps",
2022-05-24 20:16:49 +00:00
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"prepublishOnly": "pnpm build",
"watch": "tsc -w",
"build": "tsup-node src/* --format esm,cjs --dts && clear-package-json package.json -o dist/package.json --fields publishConfig",
"test": "uvu -r tsm spec",
"test-watch": "watchlist src spec -- pnpm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fast-glob": "^3.2.11",
2022-05-26 12:14:13 +00:00
"graphql": "^16.5.0",
"jose": "^4.8.3",
"retes": "^0.29.4"
2022-05-24 20:16:49 +00:00
},
"devDependencies": {
"clean-publish": "^4.0.1",
2022-07-14 12:41:37 +00:00
"@types/node": "^18.0.4",
2022-05-24 20:16:49 +00:00
"tsm": "^2.2.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"uvu": "^0.5.6",
2022-05-24 20:16:49 +00:00
"watchlist": "^0.3.1"
2022-05-26 12:14:13 +00:00
},
"exports": {
"./package.json": "./package.json",
2022-05-30 14:14:54 +00:00
"./const": {
"types": "./const.d.ts",
"import": "./const.mjs",
"require": "./const.js"
},
2022-05-26 12:14:13 +00:00
"./middleware": {
"types": "./middleware.d.ts",
"import": "./middleware.mjs",
"require": "./middleware.js"
},
2022-07-07 11:17:19 +00:00
"./urls": {
"types": "./urls.d.ts",
"import": "./urls.mjs",
"require": "./urls.js"
},
2022-05-26 12:14:13 +00:00
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
}
},
"publishConfig": {
"directory": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saleor/saleor-app-sdk.git"
},
"bugs": {
"url": "https://github.com/saleor/saleor-app-sdk/issues"
},
"homepage": "https://github.com/saleor/saleor-app-sdk#readme"
2022-05-24 20:16:49 +00:00
}