-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.72 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
{
"name": "@netlify/dev-utils",
"version": "4.4.6",
"description": "TypeScript utilities for the local emulation of the Netlify environment",
"type": "module",
"engines": {
"node": "^18.14.0 || >=20"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
},
"default": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"src/templates/*.html"
],
"scripts": {
"build": "tsup-node",
"prepack": "npm run build",
"test": "vitest run",
"test:dev": "vitest",
"test:ci": "npm run build && vitest run",
"dev": "tsup-node --watch",
"publint": "npx -y publint --strict"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netlify/primitives.git",
"directory": "packages/dev-utils"
},
"bugs": {
"url": "https://github.com/netlify/primitives/issues"
},
"author": "Netlify Inc.",
"devDependencies": {
"@netlify/types": "2.8.0",
"@types/node": "^18.19.110",
"@types/parse-gitignore": "^1.0.2",
"execa": "^8.0.1",
"tsup": "^8.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@whatwg-node/server": "^0.10.0",
"ansis": "^4.1.0",
"atomically": "^2.0.3",
"chokidar": "^4.0.1",
"decache": "^4.6.2",
"dettle": "^1.0.5",
"dot-prop": "9.0.0",
"empathic": "^2.0.0",
"env-paths": "^3.0.0",
"image-size": "^2.0.2",
"js-image-generator": "^1.0.4",
"parse-gitignore": "^2.0.0",
"semver": "^7.7.2",
"tmp-promise": "^3.0.3"
}
}