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 59 60 61 62 63 64 65 66 67
| [root@localhost next]# pwd /root/hexo/themes/next
[root@localhost next]# ll total 80 -rw-r--r--. 1 root root 29634 Jan 15 15:48 _config.yml -rw-r--r--. 1 root root 232 Jan 15 15:27 crowdin.yml drwxr-xr-x. 4 root root 82 Jan 15 15:27 docs -rw-r--r--. 1 root root 79 Jan 15 15:27 eslint.config.js drwxr-xr-x. 2 root root 4096 Jan 15 15:27 languages drwxr-xr-x. 6 root root 4096 Jan 15 15:27 layout -rw-r--r--. 1 root root 2955 Jan 15 15:27 LICENSE.md -rw-r--r--. 1 root root 1148 Jan 15 15:27 package.json -rw-r--r--. 1 root root 9484 Jan 15 15:27 README.md -rw-r--r--. 1 root root 41 Jan 15 15:27 renovate.json drwxr-xr-x. 6 root root 62 Jan 15 15:27 scripts drwxr-xr-x. 5 root root 41 Jan 15 15:27 source drwxr-xr-x. 5 root root 65 Jan 15 15:27 test -rw-r--r--. 1 root root 4836 Jan 15 15:27 _vendors.yml [root@localhost next]# cat package.json { "name": "hexo-theme-next", "version": "8.22.0", "description": "Elegant and powerful theme for Hexo.", "main": "package.json", "files": [ "docs", "languages", "layout", "scripts", "source", "_config.yml", "_vendors.yml" ], "scripts": { "eslint": "eslint scripts/ source/js test/", "prepare": "node .githooks/install.js", "stylint": "stylelint source/css/ --ip source/css/_common/scaffolding/highlight/index.styl", "test": "mocha test/index.js", "test-cov": "c8 npm test" }, "repository": "next-theme/hexo-theme-next", "keywords": [ "hexo", "theme", "next" ], "author": "NexT (https://theme-next.js.org)", "license": "AGPL-3.0-only", "bugs": { "url": "https://github.com/next-theme/hexo-theme-next/issues" }, "homepage": "https://theme-next.js.org", "devDependencies": { "@next-theme/eslint-config": "0.0.4", "c8": "10.1.3", "chai": "4.5.0", "eslint": "9.17.0", "hexo": "7.3.0", "hexo-renderer-marked": "6.3.0", "js-yaml": "4.1.0", "mocha": "11.0.1", "stylelint": "16.12.0", "stylelint-stylus": "1.0.0" } } [root@localhost next]#
|