-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "@hempworks/pilgrim",
"version": "0.2.0",
"description": "A Vitepress theme for space pilgrims.",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./tailwind.config": "./src/tailwind.config.js",
"./config": {
"import": "./dist/config.mjs",
"require": "./dist/config.cjs",
"types": "./dist/config.d.ts"
}
},
"files": [
"src",
"dist"
],
"author": "David Hemphill",
"license": "MIT",
"scripts": {
"type": "tsc --noEmit",
"dev": "vitepress dev playground",
"build": "rimraf dist && tsup src/config.ts --dts --format cjs,esm --minify --outDir dist",
"serve": "vitepress build playground && vitepress serve playground",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@docsearch/js": "^3.6.0",
"@headlessui/vue": "^1.7.21",
"@heroicons/vue": "^2.1.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@vueuse/core": "^10.9.0",
"flexsearch": "^0.7.43",
"mark.js": "^8.11.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.3",
"tsup": "^8.0.2",
"vitepress": "^1.1.4",
"vitepress-plugin-search": "^1.0.4-alpha.22",
"vue": "^3.4.26"
},
"postcss": {
"plugins": {
"tailwindcss": {
"config": "./src/tailwind.config.js"
},
"tailwindcss/nesting": {}
}
},
"peerDependencies": {
"typescript": "^4.6.3",
"vitepress": "^1.1.4"
}
}