-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
{
"name": "crypchar",
"version": "1.2.0",
"description": "Encryption and decryption of characters using arithmetic and bitwise operations.",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"jsdelivr": "dist/index.min.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./esm/index.js",
"require": "./cjs/index.js",
"browser": "./dist/index.min.js"
},
"./*": {
"types": "./types/*.d.ts",
"import": "./esm/*.js",
"require": "./cjs/*.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/crack-a-bottle/crypchar.git"
},
"files": [
"cjs",
"dist",
"esm",
"types"
],
"scripts": {
"build": "rimraf cjs dist esm types && node esbuild && tsc --emitDeclarationOnly --types node",
"build:docs": "rimraf docs && typedoc src/index.ts --includeVersion",
"test": "mocha",
"lint": "prettier . -c",
"lint:fix": "prettier . -w",
"prepare": "pnpm build"
},
"homepage": "https://crackabottle.js.org/crypchar",
"keywords": [
"crypchar",
"crypto",
"characters",
"encryption",
"decryption",
"arithmetic",
"operations",
"and",
"xor",
"nor",
"nand",
"xnor",
"not",
"or",
"byte",
"bit",
"bitwise"
],
"author": "hiimjustin000",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"esbuild": "^0.17.19",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}