nostr-react/package.json
Tristan Edwards 44513b6c19 v0.1.1
2022-12-20 06:48:16 +00:00

70 lines
1.4 KiB
JSON

{
"name": "@nostrgg/react",
"version": "0.1.1",
"license": "MIT",
"author": "t4t5 (https://t4t5.xyz)",
"main": "dist/index.js",
"module": "dist/nostrgg-react.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom"
},
"peerDependencies": {
"react": ">=16"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/nostrgg-react.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/nostrgg-react.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@tsconfig/create-react-app": "^1.0.3",
"@tsconfig/recommended": "^1.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"dts-cli": "^1.6.0",
"husky": "^8.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^8.1.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@nostrgg/client": "^0.1.0"
}
}