-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.25 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.25 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@piggly/storage",
"version": "1.0.0",
"description": "An ESM/CommonJS toolkit to help you storage and upload files with NodeJS.",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run format && npm run lint && npm run check && npm run test:build",
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json && node ./fixESM.cjs",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json && tsc-alias -p tsconfig.types.json",
"check": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write \"./src/**/*.ts\"",
"lint": "eslint --fix ./src/**",
"test": "cross-env NODE_ENV=test jest --colors --coverage --watchAll",
"test:once": "cross-env NODE_ENV=test jest --colors --no-cache",
"test:debug": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --colors --runInBand",
"test:build": "cross-env NODE_ENV=test jest --passWithNoTests",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"fastify",
"microservices",
"chassis",
"utilities",
"helpers"
],
"author": "caiquearaujo",
"license": "MIT",
"homepage": "https://github.com/piggly-lab/storage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/piggly-lab/storage.git"
},
"bugs": {
"url": "https://github.com/piggly-lab/storage/issues"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@eslint/migrate-config": "^1.3.1",
"@piggly/ddd-toolkit": "^3.0.5",
"@piggly/event-bus": "^2.1.2",
"@types/jest": "^29.5.14",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.8.6",
"@types/pump": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"@piggly/ddd-toolkit": ">=3.0"
},
"dependencies": {
"@piggly/secrets": "^0.5.0",
"crc": "^4.3.2",
"file-type": "^19.0.0",
"pump": "^3.0.2"
}
}