forked from ATQQ/sugar-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1002 Bytes
/
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
{
"name": "@sugarat/theme-shared",
"version": "0.0.2",
"description": "@sugarat/theme-shared",
"author": "sugar",
"license": "MIT",
"homepage": "https://github.com/ATQQ/sugar-blog/tree/master/packages/shared",
"repository": {
"type": "git",
"url": "git+https://github.com/ATQQ/sugar-blog.git"
},
"bugs": {
"url": "https://github.com/ATQQ/sugar-blog/issues"
},
"keywords": [
"shared",
"utils",
"vitepress"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npx tsup src/index.ts --dts --watch --format esm,cjs",
"build": "npx tsup src/index.ts --dts --format esm,cjs --silent"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"p-limit": "4"
}
}