forked from kucrut/vite-for-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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
79
{
"name": "@kucrut/vite-for-wp",
"version": "0.8.0",
"description": "Vite integration for WordPress plugins and themes development.",
"author": "Dzikri Aziz",
"license": "MIT",
"packageManager": "pnpm@8.7.4",
"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.26.2",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@wordpress/eslint-plugin": "^17.0.0",
"dts-buddy": "^0.2.5",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "npm:wp-prettier@^3.0.3",
"rollup-plugin-external-globals": "^0.8.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-external": "^4.0.1"
},
"peerDependencies": {
"rollup-plugin-external-globals": "^0.8.0",
"vite": "^4.4.11",
"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:check": "eslint --ext .cjs,.js,.ts .",
"generate:types": "node scripts/generate-types.js",
"lint": "npm run prettier:check && npm run eslint:check",
"prettier:check": "prettier --check .",
"release": "changeset publish"
}
}