Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 233B

123456789101112
  1. {
  2. "type": "module",
  3. "main": "index.cjs",
  4. "module": "index.js",
  5. "react-native": {
  6. "./index.js": "./index.native.js"
  7. },
  8. "browser": {
  9. "./index.js": "./index.browser.js",
  10. "./index.cjs": "./index.browser.cjs"
  11. }
  12. }