-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "quran-meta",
"description": "Library with meta data and functionality related to Holy Quran",
"keywords": [
"quran",
"koran",
"metadata",
"surah",
"juz"
],
"version": "3.2.0",
"license": "MIT",
"jsdelivr": "./dist/index.mjs",
"unpkg": "./dist/index.mjs",
"main": "./dist/index.cjs",
"module": "./lib_es/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"browser": "./dist/quran-meta.js",
"bun": "./dist/index.mjs",
"deno": "./dist/index.mjs",
"edge-light": "./dist/index.mjs",
"edge-routine": "./dist/index.mjs",
"netlify": "./dist/index.mjs",
"react-native": "./dist/index.mjs",
"wintercg": "./dist/index.mjs",
"worker": "./dist/index.mjs",
"electron": "./dist/index.mjs",
"workerd": "./dist/index.mjs",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "[email protected]:quran-center/quran-meta.git",
"directory": "packages/quran-meta"
},
"files": [
"src/",
"dist/",
"lib_es/",
"lib_cjs/",
"types/"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "vitest",
"lint": "eslint . --fix",
"coverage": "vitest run --coverage",
"build": "unbuild",
"precommit": "pnpm lint&&pnpm build&& vitest --onlyChanged",
"prepack": "pnpm build && pnpm test:full&&rimraf docs&&pnpm tsdoc",
"release:rc": "changelogen --release --prerelease --publish --publishTag rc",
"release": "changelogen --release --push --publish",
"test": "vitest",
"test:full": "pnpm lint && pnpm test:types && pnpm coverage",
"test:types": "tsc --noEmit",
"tsdoc": "typedoc",
"up": "pnpm update -i -L",
"verify": "pnpx jiti examples/data-check"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"changelogen": "^0.5.7",
"eslint": "9.17.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.14.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"unbuild": "3.0.1",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}