@samarium.sdk/make
Version:
72 lines (71 loc) • 1.78 kB
JSON
{
"name": "@samarium.sdk/make",
"version": "0.24.3",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/src/index.d.ts"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/liontariai/samarium",
"directory": "packages/make"
},
"keywords": [
"graphql",
"typescript",
"compiler",
"api",
"sdk",
"openapi",
"oas3",
"oas3.1",
"swagger",
"graphql-sdk",
"graphql-codegen"
],
"homepage": "https://liontari.ai",
"publishConfig": {
"access": "public",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "src/index.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/src/index.d.ts"
},
"package.json": "./package.json"
}
},
"files": [
"dist/**/*",
"!dist/**/__tests__/*",
"README.md",
"package.json"
],
"scripts": {
"prettier": "prettier --write .",
"bundle": "bun bundle.js && tsc && rm -rf `find ./dist/ -type d -name __tests__`",
"prepublishOnly": "bun run bundle",
"test": "bun test"
},
"prettier": {
"tabWidth": 4
},
"devDependencies": {
"bun-types": "^1.1.31"
},
"peerDependencies": {
"graphql": "^16.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"graphql-request": "^7.1.0",
"openapi-typescript": "^7.4.1"
}
}