66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "@saleor/app-sdk",
|
|
"version": "0.7.0",
|
|
"description": "SDK for building great Saleor Apps",
|
|
"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",
|
|
"graphql": "^16.5.0",
|
|
"jose": "^4.8.3",
|
|
"retes": "^0.29.4"
|
|
},
|
|
"devDependencies": {
|
|
"clean-publish": "^4.0.1",
|
|
"@types/node": "^18.0.4",
|
|
"tsm": "^2.2.1",
|
|
"tsup": "^6.1.3",
|
|
"typescript": "^4.7.4",
|
|
"uvu": "^0.5.6",
|
|
"watchlist": "^0.3.1"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./const": {
|
|
"types": "./const.d.ts",
|
|
"import": "./const.mjs",
|
|
"require": "./const.js"
|
|
},
|
|
"./middleware": {
|
|
"types": "./middleware.d.ts",
|
|
"import": "./middleware.mjs",
|
|
"require": "./middleware.js"
|
|
},
|
|
"./urls": {
|
|
"types": "./urls.d.ts",
|
|
"import": "./urls.mjs",
|
|
"require": "./urls.js"
|
|
},
|
|
".": {
|
|
"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"
|
|
}
|