-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.89 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.89 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
84
85
86
87
{
"name": "unplugin-operator-overload",
"description": "Add operator overload syntax to TypeScript",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"keywords": [
"unplugin"
],
"repository": {
"type": "git",
"url": "https://github.com/graphif/unplugin-operator-overload"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./astro": "./dist/astro.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./nuxt": "./dist/nuxt.js",
"./rollup": "./dist/rollup.js",
"./rspack": "./dist/rspack.js",
"./types": "./dist/types.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./package.json": "./package.json",
"./client": "./dist/client.d.ts"
},
"scripts": {
"build": "tsdown",
"type-check": "tsc"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.28.0",
"tsdown": "^0.12.9",
"typescript": "^5.9.2",
"vite": "^7.0.2"
},
"dependencies": {
"@babel/core": "^7.28.4",
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@rollup/pluginutils": "^5.2.0",
"magic-string": "^0.30.17",
"unplugin": "^2.3.5",
"yaml": "^2.8.0"
},
"peerDependencies": {
"@farmfe/core": ">=1",
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"esbuild": "*",
"rollup": "^3",
"vite": ">=3",
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"@farmfe/core": {
"optional": true
},
"@nuxt/kit": {
"optional": true
},
"@nuxt/schema": {
"optional": true
},
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
}
}