forked from vercel/edge-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 3.75 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@edge-runtime/root",
"homepage": "https://github.com/vercel/edge-runtime#readme",
"version": "0.0.0",
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Gal Schlezinger",
"email": "[email protected]"
},
{
"name": "Javi Velasco",
"email": "[email protected]"
},
{
"name": "Balázs Orbán",
"email": "[email protected]"
},
{
"name": "Damien Simonin Feugas",
"email": "[email protected]"
},
{
"name": "nkzawa",
"email": "[email protected]"
},
{
"name": "Lee Robinson",
"email": "[email protected]"
},
{
"name": "Steven",
"email": "[email protected]"
},
{
"name": "Yixuan Xu",
"email": "[email protected]"
},
{
"name": "Yamagishi Kazutoshi",
"email": "[email protected]"
},
{
"name": "Jan Potoms",
"email": "[email protected]"
},
{
"name": "await-ovo",
"email": "[email protected]"
},
{
"name": "akitaSummer",
"email": "[email protected]"
},
{
"name": "Benjamin Cirmena",
"email": "[email protected]"
},
{
"name": "Ethan Arrowood",
"email": "[email protected]"
},
{
"name": "Ian Mitchell",
"email": "[email protected]"
},
{
"name": "SukkaW",
"email": "[email protected]"
},
{
"name": "Justin Ridgewell",
"email": "[email protected]"
},
{
"name": "Matheus Fernandes",
"email": "[email protected]"
},
{
"name": "Simon Mathewson",
"email": "[email protected]"
},
{
"name": "Stefan Judis",
"email": "[email protected]"
},
{
"name": "Steren",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/edge-runtime.git"
},
"bugs": {
"url": "https://github.com/vercel/edge-runtime/issues"
},
"devDependencies": {
"@changesets/cli": "latest",
"@jest/types": "29.1.2",
"@svitejs/changesets-changelog-github-compact": "latest",
"@types/jest": "29.0.3",
"@types/node": "14",
"c8": "latest",
"esbuild": "0.17.15",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "29.5.0",
"jest-watch-typeahead": "2.2.1",
"nano-staged": "latest",
"prettier": "latest",
"simple-git-hooks": "latest",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"turbo": "latest",
"typescript": "latest"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "turbo run build",
"clean": "pnpm -r run clean && rm -rf ./node_modules",
"clean:build": "pnpm -r run clean:build",
"clean:node": "pnpm -r run clean:node",
"contributors": "git-authors-cli && finepack",
"coverage": "c8 report",
"lockfile": "pnpm install --lockfile && git add pnpm-lock.yaml && git commit -m \"build: regenerate lock\"",
"postinstall": "./node_modules/.bin/simple-git-hooks",
"prebuild": "pnpm -r run clean:build",
"test": "c8 turbo run test",
"update": "pnpm -r exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "pnpm -r exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2",
"version:prepare": "changeset version && pnpm install --no-frozen-lockfile",
"version:publish": "changeset publish"
},
"private": true,
"nano-staged": {
"*.{ts,tsx,md,mdx,js,jsx}": [
"prettier --write"
],
"package.json": [
"finepack"
]
},
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}