forked from unjs/unenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "unenv",
"version": "1.4.1",
"description": "",
"repository": "unjs/unenv",
"license": "MIT",
"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",
"lint": "eslint --ext .ts . && prettier -c src test",
"lint:fix": "eslint --fix --ext .ts . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"consola": "^3.1.0",
"defu": "^6.1.2",
"mime": "^3.0.0",
"node-fetch-native": "^1.1.0",
"pathe": "^1.1.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"changelogen": "^0.5.3",
"eslint": "^8.38.0",
"eslint-config-unjs": "^0.1.0",
"jiti": "^1.18.2",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"unbuild": "^1.2.1"
},
"packageManager": "pnpm@8.3.0"
}