-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
78 lines (78 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@kucrut/vite-for-wp",
"version": "0.10.0",
"description": "Vite integration for WordPress plugins and themes development.",
"author": "Dzikri Aziz",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"types": "types/index.d.ts",
"homepage": "https://github.com/kucrut/vite-for-wp",
"repository": {
"type": "git",
"url": "https://github.com/kucrut/vite-for-wp.git"
},
"bugs": {
"url": "https://github.com/kucrut/vite-for-wp/issues"
},
"keywords": [
"vite",
"wordpress"
],
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.17.0",
"@kucrut/eslint-config": "^0.3.2",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"dts-buddy": "^0.5.4",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"rollup-plugin-external-globals": "^0.13.0",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3",
"vite-plugin-external": "^4.0.1"
},
"peerDependencies": {
"rollup-plugin-external-globals": "^0.13.0",
"vite": "^6.0.3",
"vite-plugin-external": "^4.0.1"
},
"peerDependenciesMeta": {
"rollup-plugin-external-globals": {
"optional": true
},
"vite-plugin-external": {
"optional": true
}
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./types/index.d.ts",
"import": "./src/exports/index.js"
},
"./plugins": {
"types": "./types/index.d.ts",
"import": "./src/exports/plugins/index.js"
},
"./utils": {
"types": "./types/index.d.ts",
"import": "./src/exports/utils/index.js"
}
},
"files": [
"src",
"types"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"eslint": "eslint .",
"generate:types": "node scripts/generate-types.js",
"lint": "pnpm run eslint",
"release": "changeset publish"
}
}