-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 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
{
"name": "@netlify/edge-bundler",
"version": "14.10.3",
"description": "Intelligently prepare Netlify Edge Functions for deployment",
"type": "module",
"main": "./dist/node/index.js",
"exports": "./dist/node/index.js",
"files": [
"deno/**",
"!deno/**/*.test.ts",
"dist/**/*.js",
"!dist/**/*.test.js",
"dist/**/*.d.ts",
"shared/**"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"prepack": "npm run build",
"test": "run-s build test:dev",
"test:dev": "run-s test:dev:*",
"test:ci": "run-s test:integration test:ci:*",
"test:dev:vitest": "vitest run",
"test:dev:vitest:watch": "vitest watch",
"test:dev:deno": "deno test --allow-all deno",
"test:ci:vitest": "vitest run --coverage",
"test:ci:deno": "deno test --allow-all deno",
"test:integration": "node --experimental-modules test/integration/test.js"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netlify/build.git",
"directory": "packages/edge-bundler"
},
"bugs": {
"url": "https://github.com/netlify/build/issues"
},
"author": "Netlify Inc.",
"directories": {
"test": "test/node"
},
"devDependencies": {
"@netlify/edge-functions-bootstrap": "^3.1.0",
"@types/node": "^18.19.111",
"@types/semver": "^7.3.9",
"@vitest/coverage-v8": "^3.0.0",
"archiver": "^7.0.0",
"chalk": "^5.4.0",
"cpy": "^11.1.0",
"nock": "^14.0.0",
"npm-run-all2": "^6.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.14.0"
},
"dependencies": {
"@import-maps/resolve": "^2.0.0",
"@sveltejs/acorn-typescript": "^1.0.9",
"acorn": "^8.15.0",
"ajv": "^8.11.2",
"ajv-errors": "^3.0.0",
"better-ajv-errors": "^1.2.0",
"common-path-prefix": "^3.0.0",
"env-paths": "^3.0.0",
"esbuild": "0.28.0",
"execa": "^8.0.0",
"find-up": "^7.0.0",
"get-port": "^7.0.0",
"node-stream-zip": "^1.15.0",
"p-retry": "^6.0.0",
"p-wait-for": "^5.0.0",
"parse-imports": "^2.2.1",
"path-key": "^4.0.0",
"semver": "^7.3.8",
"tar": "^7.5.12",
"tmp-promise": "^3.0.3",
"urlpattern-polyfill": "8.0.2"
}
}