Quran.js/package.json

33 lines
940 B
JSON
Raw Normal View History

2024-10-22 07:02:04 +02:00
{
"name": "Quran",
"version": "0.1.0",
"description": "A programmer's interface to The Noble Quran",
"main": "dist/index.js",
"types": [
"dist/index.d.ts"
],
"scripts": {
"build": "npx webpack --config etc/webpack.config.js",
2024-10-22 14:02:29 +02:00
"prepare": "npm run build && npm run tsc:decl",
"tsc:decl": "tsc -p etc/tsconfig.json --emitDeclarationOnly",
2024-10-22 07:02:04 +02:00
"format": "npx eslint --config etc/eslint.config.mjs --fix src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReflectsLight/al-quran.reflectslight.io.git"
},
"author": "0x1eef",
"license": "0BSDL",
"devDependencies": {
2024-10-22 13:49:14 +02:00
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
2024-10-22 07:02:04 +02:00
"@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",
2024-10-22 13:49:14 +02:00
"typescript": "^5.5",
"webpack-cli": "^5.1.4"
2024-10-22 07:02:04 +02:00
}
}