-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 KB
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
{
"name": "paknevis",
"version": "1.0.1",
"description": "Paknevis.js is a persian text formatter tool.",
"homepage": "https://github.com/kaveh-dev/paknevis.js#readme",
"bugs": {
"url": "https://github.com/kaveh-dev/paknevis.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaveh-dev/paknevis.js.git"
},
"devDependencies": {
"jest": "^30.0.4",
"typescript": "^5.8.3"
},
"license": "MIT",
"author": "kaveh-dev",
"main": "./dist/cjs/paknevis.js",
"module": "./dist/esm/paknevis.js",
"exports": {
"import": "./dist/esm/paknevis.js",
"require": "./dist/cjs/paknevis.js"
},
"types": "./dist/types/index.d.ts",
"keywords": [
"badwords",
"profanity",
"fosh",
"filter",
"detector",
"persian",
"parsi",
"farsi",
"no-cuss",
"stopwords",
"text-cleaner",
"formatter",
"sort",
"clean",
"spellcheck",
"tidy-text",
"beautify",
"language"
],
"scripts": {
"test": "jest",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm"
}
}