-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "s3m",
"version": "0.0.1",
"description": "Multipart Uploads using Laravel and AWS S3",
"keywords": [
"laravel",
"AWS",
"Amazon S3",
"S3"
],
"homepage": "https://github.com/mreduar/s3m",
"bugs": "https://github.com/mreduar/s3m/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mreduar/s3m.git"
},
"authors": [
{
"name": "Eduar Bastidas",
"email": "eduarbastidas10@gmail.com"
}
],
"files": [
"src/js/index.js",
"dist"
],
"type": "module",
"source": "./src/js/index.js",
"exports": {
"types": "./src/js/index.d.ts",
"default": "./dist/index.js"
},
"module": "./dist/index.esm.js",
"scripts": {
"build": "npm run build:esm && npm run build:umd",
"build:esm": "microbundle -i ./src/js/index.js -o ./dist/index.js --format modern,esm --no-sourcemap --no-generateTypes --external none",
"build:umd": "microbundle -i ./src/js/browser.js -o ./dist/function.js --format umd --name s3m --no-sourcemap --no-generateTypes --external none",
"format": "prettier . --write"
},
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^3.3.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4
}
}