-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 2.64 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "kirbyup",
"type": "module",
"version": "3.1.13",
"packageManager": "[email protected]",
"description": "Zero-config bundler for Kirby Panel plugins",
"author": {
"name": "Johann Schopplich",
"email": "[email protected]",
"url": "https://johannschopplich.com"
},
"license": "MIT",
"homepage": "https://github.com/johannschopplich/kirbyup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/kirbyup.git"
},
"bugs": "https://github.com/johannschopplich/kirbyup/issues",
"keywords": [
"kirby-cms",
"kirby-plugin",
"kirby",
"cli",
"panel",
"bundler"
],
"exports": {
".": {
"types": "./dist/node/index.d.mts",
"import": "./dist/node/index.mjs"
},
"./config": {
"types": "./dist/client/config.d.mts",
"import": "./dist/client/config.mjs"
},
"./plugin": {
"types": "./dist/client/plugin.d.mts",
"import": "./dist/client/plugin.mjs"
}
},
"module": "./dist/node/index.mjs",
"types": "./dist/node/index.d.ts",
"typesVersions": {
"*": {
"config": [
"./dist/client/config.d.ts"
],
"plugin": [
"./dist/client/plugin.d.ts"
]
}
},
"bin": "./cli.mjs",
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "unbuild",
"dev": "UNBUILD_STUB=true unbuild",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp",
"test": "vitest --no-isolate",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@vitejs/plugin-vue2": "2.2.0",
"@vitejs/plugin-vue2-jsx": "1.1.0",
"@vue/compiler-sfc": "^2.7.16",
"c12": "^1.11.2",
"cac": "^6.7.14",
"chokidar": "~3.6.0",
"consola": "^3.2.3",
"magic-string": "^0.30.11",
"pathe": "^1.1.2",
"perfect-debounce": "^1.0.0",
"postcss": "^8.4.47",
"postcss-dir-pseudo-class": "^9.0.0",
"postcss-load-config": "^6.0.1",
"postcss-logical": "^8.0.0",
"rollup-plugin-external-globals": "^0.12.0",
"sass": "^1.79.1",
"vite": "~5.3.6",
"vite-plugin-full-reload": "^1.2.0",
"vue": "^2.7.16"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.5",
"@types/prompts": "^2.4.9",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"nypm": "^0.3.11",
"typescript": "^5.5.4",
"unbuild": "^3.0.0-rc.7",
"vitest": "^2.1.1"
}
}