-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.2 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
{
"name": "serverless-analyze-bundle-plugin",
"version": "2.0.2",
"author": "Adrien Cacciaguerra",
"license": "MIT",
"homepage": "https://github.com/adriencaccia/serverless-analyze-bundle-plugin#readme",
"bugs": "https://github.com/adriencaccia/serverless-analyze-bundle-plugin/issues",
"repository": "adriencaccia/serverless-analyze-bundle-plugin.git",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"lint-fix": "pnpm linter-base-config --fix",
"lint-fix-all": "pnpm lint-fix .",
"linter-base-config": "eslint --ext=js,ts .",
"package": "rm -rf dist && pnpm package-transpile && pnpm package-types && pnpm package-types-aliases",
"package-transpile": "tsup src/index.ts",
"package-types": "tsc -p tsconfig.build.json",
"package-types-aliases": "tsc-alias -p tsconfig.build.json",
"precommit": "lint-staged",
"prepare": "husky install && syncpack format",
"prepublishOnly": "pnpm package",
"release": "standard-version",
"test-linter": "pnpm linter-base-config .",
"test-type": "tsc --noEmit --emitDeclarationOnly false",
"watch": "rm -rf dist && concurrently 'pnpm:package-* --watch'"
},
"dependencies": {
"esbuild-visualizer": "^0.4.1",
"node-stream-zip": "^1.15.0",
"open": "^8.4.2"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@serverless/typescript": "^3.38.0",
"@types/serverless": "^3.12.22",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"concurrently": "^7.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"serverless": "^3.39.0",
"standard-version": "^9.5.0",
"syncpack": "^8.5.14",
"tsc-alias": "^1.8.10",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"peerDependencies": {
"serverless": "^3"
}
}