-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.9 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
{
"name": "@roots/vite-plugin",
"version": "2.2.0",
"description": "A Vite plugin for working with WordPress.",
"keywords": [
"vite",
"vite-plugin",
"wordpress"
],
"homepage": "https://github.com/roots/vite-plugin",
"license": "MIT",
"contributors": [
{
"email": "brandon@tendency.me",
"name": "Brandon Nifong",
"url": "https://github.com/log1x"
},
{
"email": "ben@benword.com",
"name": "Ben Word",
"url": "https://github.com/retlehs"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/roots/vite-plugin.git"
},
"funding": {
"type": "github sponsors",
"url": "https://github.com/sponsors/roots"
},
"files": [
"/dist"
],
"type": "module",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc --emitDeclarationOnly && esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external",
"format": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run"
},
"dependencies": {
"@wordpress/dependency-extraction-webpack-plugin": "^6.47.0"
},
"devDependencies": {
"@tailwindcss/oxide": "^4.3.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^20.19.0 || >=22.12.0",
"esbuild": "0.28.2",
"oxfmt": "^0.65.0",
"oxlint": "^1.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0"
},
"peerDependencies": {
"vite": "^8.0.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}