Discord Bot JSON解析错误

时间:2018-08-28 18:32:59

标签: javascript json discord discord.io

我应该声明一下:

  1. 我没有js经验,但是有其他语言的经验
  2. 在来这里之前,我确实尝试过自己解决这个问题。

我本质上只是试图获取机器人的安装程序,并试图在发生这种情况时安装bot依赖项:

D:\>cd\Discord Bots\Ark FTW

D:\Discord Bots\Ark FTW>npm install discord.io winston-save
npm ERR! file D:\Discord Bots\Ark FTW\package.json
npm ERR! code EJSONPARSE
npm ERR! Failed to parse json
npm ERR! Unexpected token “ in JSON at position 3 while parsing near '{
npm ERR! “name”: “Ark FTW”,
npm ERR! ...'
npm ERR! File: D:\Discord Bots\Ark FTW\package.json
npm ERR! Failed to parse package.json data.
npm ERR! package.json must be actual JSON, not just JavaScript.
npm ERR!
npm ERR! Tell the package author to fix their package.json file. JSON.parse

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\temp5\AppData\Roaming\npm-cache\_logs\2018-08-28T18_14_53_243Z-debug.log

我仅使用了教程中的代码块来进行机器人设置,但是我不知道自己在寻找什么语法错误,尽管试图在最近两个小时内弄清楚它。我认为这对任何有经验的人来说都是显而易见的,但这不是我。

这是完整的JSON文件:

{
  “name”: “Ark FTW”,
  “version”: “1.0.0”,
  “description”: “I wanna be a real bot!”,
  “main”: “bot.js”,
  “author”: “Soldiercide”,
  “dependencies”: {}
}

对于可能是一个愚蠢的问题,我感到抱歉,我感谢大家可能愿意提供的任何指导。

1 个答案:

答案 0 :(得分:3)

您使用的引号字符无效。 "是不同的字符。您应该使用最后一个。