-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "unplugin-saykit",
"version": "0.6.0",
"description": "Universal build tool plugin for saykit (Vite, Rollup, Webpack, esbuild)",
"keywords": [
"i18n",
"rollup",
"saykit",
"unplugin",
"vite",
"webpack"
],
"homepage": "https://github.com/k0d13/saykit#readme",
"bugs": {
"url": "https://github.com/k0d13/saykit/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/k0d13/saykit.git",
"directory": "packages/plugin-unplugin"
},
"files": [
"dist",
"!dist/**/*.map"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.mts",
"default": "./dist/*.mjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsdown",
"prepack": "pnpm build"
},
"dependencies": {
"@saykit/config": "workspace:^",
"unplugin": "^3.3.0"
}
}