-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "@samocodes/s3-safe-key",
"version": "1.1.11",
"private": false,
"description": "Package that sanitizes s3 object keys",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"import": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts --clean --sourcemap --minify terser",
"lint": "tsc",
"release": "pnpm run build && changeset publish --public",
"test": "jest --verbose"
},
"keywords": [
"s3-objects",
"s3",
"aws-s3",
"object-keys",
"s3-key-sanitization",
"s3-key-validation",
"s3-safe-keys",
"s3-key-cleaning",
"aws-s3-utilities",
"s3-object-naming",
"s3-key-normalization",
"s3-key-management",
"s3-safe-filenames",
"s3-key-generator",
"s3-key-security",
"s3-key-transform",
"s3-compatibility",
"s3-key-standardization",
"aws-sdk",
"s3-helper",
"s3-bucket",
"s3-path-sanitizer",
"s3-string-sanitization",
"cloud-storage",
"object-storage",
"aws-cloud",
"s3-key-formatter"
],
"author": "Samir <samirdiff@proton.me>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"jest": "^29.7.0",
"terser": "^5.31.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/samocodes/s3-safe-key.git"
},
"packageManager": "pnpm@8.0.0",
"publishConfig": {
"access": "public"
}
}