-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.2 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.2 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
{
"name": "serverless-plugin-tree-shake",
"version": "2.0.3",
"description": "Shake the dependency tree and only include files needed",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/sergioramos/serverless-plugin-tree-shake.git"
},
"author": "Sérgio Ramos <mail@sergioramos.me>",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js"
],
"keywords": [
"trace",
"dependencies",
"tree",
"shake",
"tree-shake",
"package",
"bundle",
"typescript",
"serverless",
"serverless-plugin",
"plugin"
],
"scripts": {
"benchmark": "node test/benchmark.js",
"check": "biome check --write .",
"fmt": "biome format --write",
"prepare": "husky",
"test": "node --test 'test/index.js'"
},
"dependencies": {
"@vercel/nft": "^0.30.1",
"apr-find": "^3.0.3",
"apr-intercept": "^3.0.4",
"apr-map": "^3.0.3",
"apr-parallel": "^3.0.3",
"archiver": "^7.0.1",
"globby": "^14.1.0",
"lodash.flatten": "^4.4.0",
"lodash.sortby": "^4.7.0",
"lodash.topairs": "^4.3.0",
"lodash.uniq": "^4.5.0",
"nanomatch": "^1.2.13",
"package-up": "^5.0.0",
"path-is-inside": "^1.0.2",
"tempy": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"apr-for-each": "^3.0.3",
"apr-main": "^4.0.3",
"apr-reduce": "^3.0.3",
"directory-tree": "^3.5.2",
"execa": "^9.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"markdown-table": "^3.0.4",
"path-type": "^6.0.0",
"pretty-bytes": "^7.0.1",
"pretty-ms": "^9.2.0"
},
"peerDependencies": {
"osls": "^3.53.0",
"typescript": "^5.9.2"
},
"release": {
"branches": [
"main"
]
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched",
"git add"
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}