-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1017 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1017 Bytes
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": "fise",
"version": "0.1.5",
"description": "FISE - Fast Internet Secure Extensible: a keyless, rule-based envelope to protect API & frontend data.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test tests/*.mjs",
"benchmark": "tsx benchmarks/benchmark.ts"
},
"keywords": [
"security",
"encryption",
"frontend",
"api",
"obfuscation",
"rule-engine",
"web",
"typescript"
],
"author": "An Nguyen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anbkit/fise.git"
},
"bugs": {
"url": "https://github.com/anbkit/fise/issues"
},
"homepage": "https://github.com/anbkit/fise#readme",
"devDependencies": {
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.6.0"
}
}