Files
sonr/packages/com/package.json
T
Prad NukalaandGitHub 13e6c3e84d Master (#1262)
* clear

* feat: Add everything

* fix: Commenht
2025-10-03 14:45:52 -04:00

71 lines
1.6 KiB
JSON

{
"name": "@sonr.io/com",
"version": "0.1.12",
"description": "Common types, utilities, and constants for Sonr ecosystem",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
},
"./constants": {
"types": "./dist/constants/index.d.ts",
"import": "./dist/constants/index.js",
"require": "./dist/constants/index.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"test": "echo 'No tests defined for @sonr.io/com'",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"release": "cz --no-raise 6,21 bump --yes --increment PATCH"
},
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@types/node": "^22.5.5",
"tsup": "^8.0.0",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/sonr-io/sonr.git",
"directory": "packages/com"
},
"license": "MIT",
"keywords": [
"sonr",
"common",
"types",
"utilities",
"constants"
]
}