Skip to content

Commit

Permalink
chore: update package.json with publishconfig and sorted fields
Browse files Browse the repository at this point in the history
  • Loading branch information
hirenchauhan2 committed Oct 29, 2023
1 parent d211d02 commit b504df9
Showing 1 changed file with 31 additions and 25 deletions.
56 changes: 31 additions & 25 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,37 @@
{
"name": "gu-en",
"name": "gu2en",
"version": "1.0.0",
"description": "Transliterate gujarati unicode text to english/roman letters",
"keywords": [
"transliteration",
"gujarati",
"gujarati-language",
"transliterate",
"indic-language",
"gu2en"
],
"repository": {
"url": "https://github.com/hirenchauhan2/gu2en"
},
"license": "GPL-3.0-or-later",
"author": "Hiren Chauhan",
"type": "module",
"main": "dist/gu2en.cjs.js",
"module": "dist/gu2en.esm.js",
"browser": "dist/gu2en.umd.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"pretest": "npm run build",
"test": "ts-node test/test.ts"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-eslint": "9.0.5",
Expand All @@ -14,28 +41,7 @@
"prettier": "3.0.3",
"rollup": "4.1.4 "
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ts-node test/test.ts",
"pretest": "npm run build",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"type": "module",
"files": [
"dist"
],
"keywords": [
"transliteration",
"gujarati",
"gujarati-language",
"transliterate",
"indic-language",
"gu2en"
],
"author": "Hiren Chauhan",
"license": "GPL-3.0-or-later"
"publishConfig": {
"@hirenchauhan2:registry": "https://npm.pkg.github.com/hirenchauhan2"
}
}

0 comments on commit b504df9

Please sign in to comment.