-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "hexo-partytown",
"version": "0.3.1",
"author": "藍+85CD",
"license": "WTFPL",
"keywords": [
"hexo",
"filter",
"plugin",
"partytown"
],
"description": "Partytown Integration for Hexo",
"repository": "github:kwaa/hexo-partytown",
"homepage": "https://github.com/kwaa/hexo-partytown",
"bugs": "https://github.com/kwaa/hexo-partytown/issues",
"type": "module",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"unbuild": {
"entries": [
"src/index"
],
"clean": true,
"declaration": true,
"rollup": {
"emitCJS": true
}
},
"scripts": {
"build": "unbuild",
"watch": "unbuild --stub"
},
"dependencies": {
"@builder.io/partytown": "^0.7.1",
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/hexo": "^3.8.8",
"@types/node": "^18.8.4",
"unbuild": "^0.8.11"
}
}