sync-npm-version-to-jsr
Version:
sync package.json version to jsr.json
59 lines (58 loc) • 1.45 kB
JSON
{
"name": "sync-npm-version-to-jsr",
"version": "1.1.5",
"publishConfig": {
"access": "public"
},
"description": "sync package.json version to jsr.json",
"keywords": [
"jsr"
],
"homepage": "https://github.com/node-modules/sync-npm-version-to-jsr#readme",
"bugs": {
"url": "https://github.com/node-modules/sync-npm-version-to-jsr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-modules/sync-npm-version-to-jsr.git"
},
"license": "MIT",
"author": "fengmk2",
"engines": {
"node": ">= 22.18.0"
},
"devDependencies": {
"@eggjs/tsconfig": "3",
"@types/node": "24",
"husky": "9",
"oxlint": "^1.11.0",
"prettier": "3",
"typescript": "5"
},
"scripts": {
"lint": "oxlint",
"pretest": "npm run lint -- --fix",
"test": "node --test",
"preci": "npm run lint",
"ci": "npm run prepublishOnly && npm run postversion",
"postversion": "npm run prepublishOnly && node dist/bin.js && git add jsr.json",
"prepublishOnly": "tsc -b --clean && tsc",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown --cache",
"*.{ts,js,json,md,yml}": [
"prettier --ignore-unknown --write",
"oxlint --fix"
]
},
"files": [
"dist"
],
"bin": {
"sync-npm-version-to-jsr": "dist/bin.js"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts"
}