-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "symmetrical-encryption",
"version": "1.0.11",
"repository": {
"type": "git",
"url": "https://github.com/hevar/symmetrical-encryption.git"
},
"description": "Secure encrypt and decrypt string/data using AES-256-GCM for node.js",
"homepage": "https://github.com/hevar/symmetrical-encryption",
"bugs": "https://github.com/hevar/symmetrical-encryption/issues",
"author": {
"name": "Hevar Magron",
"url": "https://h3.nu"
},
"license": "MIT",
"keywords": [
"encryption",
"decryption",
"aes-256-gcm",
"symmetric encryption",
"symmetrical encryption",
"symmetric decryption",
"symmetrical decryption",
"symmetric encryption and decryption using aes-256-gcm for node.js",
"crypto",
"security",
"cipher",
"decipher",
"encrypt",
"decrypt",
"node.js",
"typescript",
"javascript"
],
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup --format esm,cjs",
"dev": "tsup --watch",
"format": "prettier --write .",
"eslint": "eslint src/ tests/",
"eslint:fix": "eslint --fix --ext .ts,.js src/ tests/",
"prettier": "prettier --check 'src/**/*.{ts,js,json}' 'tests/**/*.{ts,js,json}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,js,json}' 'tests/**/*.{ts,js,json}'",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"release": "NODE_ENV=production pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.26",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsup": "^7.2.0",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0",
"vitest": "^0.33.0"
},
"publishConfig": {
"access": "public"
}
}