saleor-app-sdk-REDIS_APL/package.json

85 lines
2.3 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",
2022-07-20 10:44:10 +00:00
"test-watch": "watchlist src spec -- pnpm test",
2022-07-20 14:27:07 +00:00
"prepare": "husky install",
2022-07-20 10:44:10 +00:00
"lint": "prettier --loglevel warn --write . && eslint --fix ."
2022-05-24 20:16:49 +00:00
},
"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": {
2022-07-14 12:41:37 +00:00
"@types/node": "^18.0.4",
2022-07-20 10:44:10 +00:00
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"clean-publish": "^4.0.1",
"eslint": "8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
2022-07-20 14:27:07 +00:00
"husky": "^8.0.1",
2022-07-20 10:44:10 +00:00
"prettier": "2.6.2",
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
},
2022-07-20 14:27:07 +00:00
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
},
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-07-20 14:27:07 +00:00
}