Quran.js/package.json
2024-10-22 21:13:43 -03:00

31 lines
964 B
JSON

{
"name": "@0x1eef/Quran",
"version": "0.1.0",
"description": "A programmer's interface to The Noble Quran",
"author": "0x1eef",
"license": "GPL-3.0",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {".": "./dist/index.mjs"},
"scripts": {
"build": "npx webpack --config etc/webpack.config.js",
"prepare": "npm run build && npm run tsc:decl",
"tsc:decl": "tsc -p etc/tsconfig.json --emitDeclarationOnly",
"format": "npx eslint --config etc/eslint.config.mjs --fix src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReflectsLight/Quran.js.git"
},
"devDependencies": {
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@types/node": "^22.0",
"babel-loader": "^9.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5",
"webpack-cli": "^5.1.4"
}
}