-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "wisely",
"version": "0.4.2",
"description": "Obfuscating text or phrases with random uncommon characters to avoid banning.",
"type": "module",
"files": [
"charsets/",
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./core": "./dist/core.js",
"./charsets/*": "./charsets/*"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"build": "tsup src/index.ts src/core.ts --format esm -d dist --clean --dts --sourcemap --minify",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fityannugroho/wisely.git"
},
"keywords": [
"ban",
"filter",
"random",
"regex",
"obsfucation",
"obfuscate",
"obscure",
"string",
"text",
"unicode",
"utf-8",
"wisely"
],
"author": "Fityan <[email protected]> (https://github.com/fityannugroho)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fityannugroho/wisely/issues"
},
"homepage": "https://github.com/fityannugroho/wisely#readme",
"funding": "https://github.com/sponsors/fityannugroho",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.53.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}