-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "unenv",
"version": "2.0.0-rc.0",
"description": "",
"repository": "unjs/unenv",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./runtime/mock/proxy-cjs": "./runtime/mock/proxy.cjs",
"./runtime/mock/proxy-cjs/*": "./runtime/mock/proxy.cjs",
"./runtime/*": {
"types": "./runtime/*.d.ts",
"require": "./runtime/*.cjs",
"import": "./runtime/*.mjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"runtime"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint --fix . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm lint && pnpm vitest --run && pnpm test:types && pnpm test:node",
"test:node": "node --test --import jiti/register ./test/node/test-*",
"test:node-coverage": "node test/node-coverage.mjs",
"test:node:watch": "node --test --watch --import jiti/register ./test/node/test-*",
"test:types": "tsc --noEmit",
"test:workerd": "node test/workerd/main.mjs"
},
"dependencies": {
"defu": "^6.1.4",
"mlly": "^1.7.4",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"ufo": "^1.5.4"
},
"devDependencies": {
"@parcel/watcher": "^2.5.0",
"@types/node": "^22.10.7",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"consola": "^3.4.0",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-config-unjs": "^0.4.2",
"jiti": "^2.4.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^3.0.1",
"workerd": "^1.20250109.0",
"wrangler": "^3.103.1"
},
"packageManager": "[email protected]"
}