-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.29 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
{
"name": "@moritzloewenstein/vite-wp-theme",
"version": "2.0.0",
"type": "module",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MoritzLoewenstein/vite-wp-theme.git"
},
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"biome:check": "biome check .",
"biome:write": "biome check --write .",
"biome:ci": "biome ci .",
"test": "node --test",
"test:only": "node --test --test-only",
"test:watch": "node --test --watch"
},
"keywords": [
"vite-plugin"
],
"author": {
"name": "Moritz Löwenstein",
"url": "https://github.com/MoritzLoewenstein"
},
"license": "MIT",
"volta": {
"node": "22.20.0"
},
"peerDependencies": {
"vite": "^8.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^22.19.15",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"dependencies": {
"@moritzloewenstein/vite-plugin-rsync": "^2.0.2",
"@moritzloewenstein/vite-plugin-sass-glob-import": "^7.0.1",
"@moritzloewenstein/vite-plugin-zip": "^2.0.0"
}
}