-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "nano-aes",
"version": "2.0.0",
"description": "Simple & lightweight AES (Advanced Encryption Standard) module. Wrapper for Node.js crypto module",
"keywords": [
"nano-aes",
"aes",
"nano aes",
"encryption",
"encrypt",
"decrypt",
"nodejs"
],
"homepage": "https://github.com/Hazmi35/nano-aes#readme",
"bugs": {
"url": "https://github.com/Hazmi35/nano-aes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hazmi35/nano-aes.git"
},
"license": "MIT",
"author": "Hazmi35 <[email protected]>",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run lint && pnpm run compile",
"compile": "tsup",
"lint": "eslint .",
"lint:fix": "pnpm run lint -- --fix",
"release": "pnpm publish --access public --no-git-checks"
},
"devDependencies": {
"@hazmi35/eslint-config": "^13.3.1",
"@swc/core": "^1.5.7",
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^20.12.12",
"terser": "^5.31.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=14.x"
}
}