Skip to content

Commit ed891ca

Browse files
committed
update info
1 parent 23df96f commit ed891ca

File tree

3 files changed

+76
-92
lines changed

3 files changed

+76
-92
lines changed

docs/.vuepress/theme/package.json

Lines changed: 25 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,27 @@
11
{
2-
"name": "vuepress-theme-nesercode",
3-
"version": "2.0.0",
4-
"description": "vuepress themed with tailwindcss.",
5-
"author": "✨NeserCode <[email protected]>",
6-
"license": "MIT",
7-
"exports": {
8-
".": "./lib/node/index.js",
9-
"./client": "./lib/client/index.js",
10-
"./shared": "./lib/shared/index.js",
11-
"./components/*": "./lib/client/components/*",
12-
"./layouts/*": "./lib/client/layouts/*",
13-
"./templates/*": "./templates/*",
14-
"./lib/*": "./lib/*",
15-
"./package.json": "./package.json"
16-
},
17-
"main": "./lib/node/index.js",
18-
"types": "./lib/node/index.d.ts",
19-
"files": [
20-
"lib",
21-
"templates"
22-
],
23-
"scripts": {
24-
"docs:dev": "vuepress dev docs",
25-
"docs:build": "vuepress build docs"
26-
},
27-
"devDependencies": {
28-
"@vuepress/bundler-vite": "^2.0.0-rc.14",
29-
"@vuepress/theme-default": "^2.0.0-rc.37",
30-
"@vuepress/bundler-webpack": "^2.0.0-rc.7",
31-
"@vuepress/shared": "^2.0.0-rc.2",
32-
"@vuepress/plugin-active-header-links": "^2.0.0-rc.37",
33-
"@vuepress/plugin-git": "^2.0.0-rc.37",
34-
"@vuepress/plugin-reading-time": "^2.0.0-rc.37",
35-
"@vuepress/plugin-theme-data": "^2.0.0-rc.37",
36-
"autoprefixer": "^10.4.19",
37-
"postcss": "^8.4.39",
38-
"tailwindcss": "^3.4.4",
39-
"vuepress": "^2.0.0-rc.14"
40-
},
41-
"peerDependencies": {
42-
"vue": "~3.4.31"
43-
}
2+
"name": "vuepress-theme-nesercode",
3+
"version": "2.0.0",
4+
"description": "vuepress themed with tailwindcss.",
5+
"author": "✨NeserCode <[email protected]>",
6+
"license": "MIT",
7+
"exports": {
8+
".": "./lib/node/index.js",
9+
"./client": "./lib/client/index.js",
10+
"./shared": "./lib/shared/index.js",
11+
"./components/*": "./lib/client/components/*",
12+
"./layouts/*": "./lib/client/layouts/*",
13+
"./templates/*": "./templates/*",
14+
"./lib/*": "./lib/*",
15+
"./package.json": "./package.json"
16+
},
17+
"main": "./lib/node/index.js",
18+
"types": "./lib/node/index.d.ts",
19+
"files": [
20+
"lib",
21+
"templates"
22+
],
23+
"scripts": {
24+
"dev": "vuepress dev docs",
25+
"build": "vuepress build docs"
26+
}
4427
}

docs/.vuepress/theme/tailwind.config.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ export default {
55
theme: {
66
extend: {},
77
},
8-
plugins: [{
9-
tailwindcss: {},
10-
autoprefixer: {},
11-
}],
8+
plugins: [
9+
{
10+
tailwindcss: {},
11+
autoprefixer: {},
12+
},
13+
],
1214
options: {
1315
safelist: ["html", "body"],
14-
}
15-
}
16-
16+
},
17+
};

package.json

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
{
2-
"name": "vuepress-theme-nc-root",
3-
"version": "1.0.0",
4-
"description": "vuepress themed with tailwindcss.",
5-
"main": "index.js",
6-
"author": "✨NeserCode <[email protected]>",
7-
"license": "MIT",
8-
"scripts": {
9-
"docs:dev": "vuepress dev docs",
10-
"docs:build": "vuepress build docs"
11-
},
12-
"devDependencies": {
13-
"@vuepress/bundler-vite": "^2.0.0-rc.14",
14-
"@vuepress/bundler-webpack": "^2.0.0-rc.7",
15-
"@vuepress/helper": "^2.0.0-rc.37",
16-
"@vuepress/plugin-active-header-links": "^2.0.0-rc.37",
17-
"@vuepress/plugin-blog": "^2.0.0-rc.37",
18-
"@vuepress/plugin-git": "^2.0.0-rc.37",
19-
"@vuepress/plugin-markdown-container": "^2.0.0-rc.37",
20-
"@vuepress/plugin-nprogress": "^2.0.0-rc.37",
21-
"@vuepress/plugin-reading-time": "^2.0.0-rc.37",
22-
"@vuepress/plugin-search": "^2.0.0-rc.38",
23-
"@vuepress/plugin-seo": "^2.0.0-rc.37",
24-
"@vuepress/plugin-shiki": "^2.0.0-rc.37",
25-
"@vuepress/plugin-theme-data": "^2.0.0-rc.37",
26-
"@vuepress/plugin-toc": "^2.0.0-rc.37",
27-
"@vuepress/shared": "^2.0.0-rc.2",
28-
"@vuepress/theme-default": "^2.0.0-rc.37",
29-
"autoprefixer": "^10.4.19",
30-
"postcss": "^8.4.39",
31-
"tailwindcss": "^3.4.4",
32-
"vuepress": "^2.0.0-rc.14",
33-
"vuepress-plugin-md-enhance": "^2.0.0-rc.50"
34-
},
35-
"dependencies": {
36-
"@giscus/vue": "^3.0.0",
37-
"@headlessui/vue": "^1.7.22",
38-
"@heroicons/vue": "^2.1.4",
39-
"@vueuse/core": "^10.11.0"
40-
},
41-
"peerDependencies": {
42-
"vue": "~3.4.31",
43-
"vue-router": "~4.4.0"
44-
}
2+
"name": "vuepress-theme-nc-root",
3+
"version": "1.0.0",
4+
"description": "vuepress themed with tailwindcss.",
5+
"main": "index.js",
6+
"author": "✨NeserCode <[email protected]>",
7+
"license": "MIT",
8+
"scripts": {
9+
"dev": "vuepress dev docs",
10+
"build": "vuepress build docs"
11+
},
12+
"devDependencies": {
13+
"@vuepress/bundler-vite": "^2.0.0-rc.14",
14+
"@vuepress/bundler-webpack": "^2.0.0-rc.7",
15+
"@vuepress/helper": "^2.0.0-rc.37",
16+
"@vuepress/plugin-active-header-links": "^2.0.0-rc.37",
17+
"@vuepress/plugin-blog": "^2.0.0-rc.37",
18+
"@vuepress/plugin-git": "^2.0.0-rc.37",
19+
"@vuepress/plugin-markdown-container": "^2.0.0-rc.37",
20+
"@vuepress/plugin-nprogress": "^2.0.0-rc.37",
21+
"@vuepress/plugin-reading-time": "^2.0.0-rc.37",
22+
"@vuepress/plugin-search": "^2.0.0-rc.38",
23+
"@vuepress/plugin-seo": "^2.0.0-rc.37",
24+
"@vuepress/plugin-shiki": "^2.0.0-rc.37",
25+
"@vuepress/plugin-theme-data": "^2.0.0-rc.37",
26+
"@vuepress/plugin-toc": "^2.0.0-rc.37",
27+
"@vuepress/shared": "^2.0.0-rc.2",
28+
"@vuepress/theme-default": "^2.0.0-rc.37",
29+
"autoprefixer": "^10.4.19",
30+
"postcss": "^8.4.39",
31+
"tailwindcss": "^3.4.4",
32+
"vuepress": "^2.0.0-rc.14",
33+
"vuepress-plugin-md-enhance": "^2.0.0-rc.50"
34+
},
35+
"dependencies": {
36+
"@giscus/vue": "^3.0.0",
37+
"@headlessui/vue": "^1.7.22",
38+
"@heroicons/vue": "^2.1.4",
39+
"@vueuse/core": "^10.11.0"
40+
},
41+
"peerDependencies": {
42+
"vue": "~3.4.31",
43+
"vue-router": "~4.4.0"
44+
}
4545
}

0 commit comments

Comments
 (0)