-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
{
"name": "feistly",
"version": "0.1.3",
"description": "Secure, lightweight library for obfuscating auto-increment IDs with Feistel cipher - prevents ID enumeration attacks while keeping URLs short",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"compare": "tsx scripts/compare.ts",
"dev:example": "tsx examples/basic.ts",
"prepublishOnly": "pnpm build",
"test": "node --test --import tsx"
},
"keywords": [
"feistel",
"obfuscation",
"encryption",
"id-obfuscation",
"auto-increment",
"security",
"url-shortener",
"format-preserving",
"hashids-alternative",
"sqids-alternative"
],
"author": "JANGWOOJOON <im@woojun.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jundev76/feistly.git"
},
"bugs": {
"url": "https://github.com/jundev76/feistly/issues"
},
"homepage": "https://github.com/jundev76/feistly#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.11.30",
"hashids": "^2.3.0",
"optimus-js": "^0.1.4",
"sqids": "^0.3.0",
"tsx": "^4.16.2",
"typescript": "^5.6.3"
}
}