Переглянути джерело

项目初始化 (#1)

* 项目初始化

* 移除yarn.lock
kong 1 рік тому
батько
коміт
61626c6507
3 змінених файлів з 19 додано та 0 видалено
  1. 2 0
      .gitignore
  2. 1 0
      docs/README.md
  3. 16 0
      package.json

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+node_modules
+yarn.lock

+ 1 - 0
docs/README.md

@@ -0,0 +1 @@
+# Hello VuePress

+ 16 - 0
package.json

@@ -0,0 +1,16 @@
+{
+  "name": "rust_camp_tutorial",
+  "version": "1.0.0",
+  "main": "index.js",
+  "repository": "git@github.com:DragonOS-Community/rust_camp_tutorial.git",
+  "author": "kong <376634352@qq.com>",
+  "license": "MIT",
+  "devDependencies": {
+    "vuepress": "^1.9.9"
+  },
+  "scripts": {
+    "docs:dev": "vuepress dev docs",
+    "docs:build": "vuepress build docs"
+  }
+
+}