-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.19 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.19 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
88
89
90
91
92
93
94
95
{
"name": "@e18e/unplugin-replacements",
"type": "module",
"version": "0.0.1",
"description": "An unplugin for replacing syntax and modules with e18e recommendations",
"license": "MIT",
"homepage": "https://github.com/e18e/unplugin-replacements",
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/unplugin-replacements.git"
},
"bugs": {
"url": "https://github.com/e18e/unplugin-replacements/issues"
},
"keywords": [
"unplugin",
"e18e",
"replacements"
],
"main": "./lib/main.js",
"exports": {
".": "./lib/main.js",
"./lib/*.js": "./lib/*.js",
"./farm": "./lib/farm.js",
"./nuxt": "./lib/nuxt.js",
"./vite": "./lib/vite.js",
"./astro": "./lib/astro.js",
"./rollup": "./lib/rollup.js",
"./rspack": "./lib/rspack.js",
"./esbuild": "./lib/esbuild.js",
"./webpack": "./lib/webpack.js"
},
"files": [
"lib",
"!lib/**/*.test.js"
],
"scripts": {
"build": "tsgo",
"format": "prettier --write src",
"lint:js": "eslint src",
"lint:format": "prettier --check src",
"lint": "npm run lint:js && npm run lint:format",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"peerDependencies": {
"@farmfe/core": ">=1",
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"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
}
},
"dependencies": {
"@e18e/web-features-codemods": "^0.2.0",
"unplugin": "^2.3.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@nuxt/kit": "^4.2.2",
"@nuxt/schema": "^4.2.2",
"@types/node": "^25.0.9",
"@typescript/native-preview": "^7.0.0-dev.20260119.1",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"rollup": "^4.55.2",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vitest": "^4.0.17",
"webpack": "^5.104.1"
}
}