-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "arabic-utils",
"version": "6.0.1",
"description": "Utilities for handling Arabic strings such as removing diacritics, tatweel, performing token based search and more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"test": "jest",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/justgo97/arabic-utils.git"
},
"keywords": [
"arabic",
"diacritics",
"string"
],
"author": "Hamdi Maraoui",
"license": "MIT",
"bugs": {
"url": "https://github.com/justgo97/arabic-utils/issues"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.3"
}
}