-
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.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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": "simplekeys",
"version": "2.0.0",
"description": "A simple node js library for cyptograhic api key generation. Encode information in api keys and validate keys without making api calls.",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsup ./src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marchusness/SimpleKeys.git"
},
"keywords": [
"apikey",
"encryption",
"decryption",
"crypto",
"api-key",
"api-key-encryption",
"api-key-decryption",
"api-key-crypto",
"api-key-encryption-decryption"
],
"author": "Marcus",
"license": "ISC",
"bugs": {
"url": "https://github.com/Marchusness/SimpleKeys/issues"
},
"homepage": "https://github.com/Marchusness/SimpleKeys#readme",
"devDependencies": {
"@types/node": "^22.7.4",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}