Quran.js/package.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2024-10-22 07:02:04 +02:00
{
2024-10-22 23:34:50 +02:00
"name": "@0x1eef/Quran",
2024-10-22 07:02:04 +02:00
"version": "0.1.0",
"description": "A programmer's interface to The Noble Quran",
2024-10-22 14:17:43 +02:00
"author": "0x1eef",
2024-10-22 23:34:50 +02:00
"license": "GPL-3.0",
2024-10-23 00:44:19 +02:00
"main": "dist/index.mjs",
2024-10-22 14:17:43 +02:00
"types": "dist/index.d.ts",
2024-10-23 02:13:43 +02:00
"exports": {".": "./dist/index.mjs"},
2024-10-23 03:09:21 +02:00
"files": ["README.md", "package.json", "share/*", "share/**/*", "dist/*", "dist/**/*"],
"keywords": ["quran", "islam", "typescript", "javascript"],
2024-10-22 07:02:04 +02:00
"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",
2024-10-22 14:17:43 +02:00
"url": "git+https://github.com/ReflectsLight/Quran.js.git"
2024-10-22 07:02:04 +02:00
},
"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
}
}