├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dprint.jsonc ├── json-schema-artifact.mjs ├── lefthook.yaml ├── package.json ├── pnpm-lock.yaml ├── schemas ├── clash-nyanpasu-merge-json-schema.json ├── clash-verge-merge-json-schema.json └── meta-json-schema.json ├── src ├── clash-nyanpasu-merge-json-schema.json ├── clash-verge-merge-json-schema.json ├── definitions │ ├── compatible.json │ ├── enums.json │ ├── patterns.json │ └── types.json ├── meta-json-schema.json └── modules │ ├── adapter │ ├── outbound │ │ ├── anytls.json │ │ ├── base.json │ │ ├── direct.json │ │ ├── dns.json │ │ ├── ech.json │ │ ├── http.json │ │ ├── hysteria.json │ │ ├── hysteria2.json │ │ ├── mieru.json │ │ ├── reality.json │ │ ├── shadowsocks.json │ │ ├── shadowsocksr.json │ │ ├── singmux.json │ │ ├── snell.json │ │ ├── socks5.json │ │ ├── ssh.json │ │ ├── trojan.json │ │ ├── tuic.json │ │ ├── vless.json │ │ ├── vmess.json │ │ └── wireguard.json │ ├── outboundgroup │ │ ├── fallback.json │ │ ├── groupbase.json │ │ ├── loadbalance.json │ │ ├── relay.json │ │ ├── selector.json │ │ └── urltest.json │ └── provider │ │ ├── health-check.json │ │ └── provider.json │ ├── config │ ├── authentication.json │ ├── controller.json │ ├── dns.json │ ├── experimental.json │ ├── general.json │ ├── geox-url.json │ ├── hosts.json │ ├── inbound.json │ ├── iptables.json │ ├── listeners.json │ ├── ntp.json │ ├── profile.json │ ├── proxies.json │ ├── proxy-groups.json │ ├── proxy-providers.json │ ├── rules.json │ ├── sniffer.json │ ├── sub-rules.json │ ├── tls.json │ └── tunnels.json │ ├── listener │ ├── config │ │ ├── tuic.json │ │ └── tun.json │ ├── inbound │ │ ├── anytls.json │ │ ├── auth.json │ │ ├── base.json │ │ ├── http.json │ │ ├── hysteria2.json │ │ ├── mieru.json │ │ ├── mixed.json │ │ ├── mux.json │ │ ├── reality.json │ │ ├── redir.json │ │ ├── shadowsocks.json │ │ ├── socks.json │ │ ├── tproxy.json │ │ ├── trojan.json │ │ ├── tuic.json │ │ ├── tun.json │ │ ├── tunnel.json │ │ ├── vless.json │ │ └── vmess.json │ └── sing │ │ └── sing.json │ └── rules │ ├── provider │ ├── inline-rule.json │ └── provider.json │ └── rule.json └── test ├── clash-meta └── example.yaml ├── clash-nyanpasu └── merge.yaml └── clash-verge └── merge.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["redhat.vscode-yaml", "usernamehw.errorlens"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/README.md -------------------------------------------------------------------------------- /dprint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/dprint.jsonc -------------------------------------------------------------------------------- /json-schema-artifact.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/json-schema-artifact.mjs -------------------------------------------------------------------------------- /lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/lefthook.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /schemas/clash-nyanpasu-merge-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/schemas/clash-nyanpasu-merge-json-schema.json -------------------------------------------------------------------------------- /schemas/clash-verge-merge-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/schemas/clash-verge-merge-json-schema.json -------------------------------------------------------------------------------- /schemas/meta-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/schemas/meta-json-schema.json -------------------------------------------------------------------------------- /src/clash-nyanpasu-merge-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/clash-nyanpasu-merge-json-schema.json -------------------------------------------------------------------------------- /src/clash-verge-merge-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/clash-verge-merge-json-schema.json -------------------------------------------------------------------------------- /src/definitions/compatible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/definitions/compatible.json -------------------------------------------------------------------------------- /src/definitions/enums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/definitions/enums.json -------------------------------------------------------------------------------- /src/definitions/patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/definitions/patterns.json -------------------------------------------------------------------------------- /src/definitions/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/definitions/types.json -------------------------------------------------------------------------------- /src/meta-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/meta-json-schema.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/anytls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/anytls.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/base.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/direct.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/dns.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/ech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/ech.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/http.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/hysteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/hysteria.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/hysteria2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/hysteria2.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/mieru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/mieru.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/reality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/reality.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/shadowsocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/shadowsocks.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/shadowsocksr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/shadowsocksr.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/singmux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/singmux.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/snell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/snell.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/socks5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/socks5.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/ssh.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/trojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/trojan.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/tuic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/tuic.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/vless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/vless.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/vmess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/vmess.json -------------------------------------------------------------------------------- /src/modules/adapter/outbound/wireguard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outbound/wireguard.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/fallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/fallback.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/groupbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/groupbase.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/loadbalance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/loadbalance.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/relay.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/selector.json -------------------------------------------------------------------------------- /src/modules/adapter/outboundgroup/urltest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/outboundgroup/urltest.json -------------------------------------------------------------------------------- /src/modules/adapter/provider/health-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/provider/health-check.json -------------------------------------------------------------------------------- /src/modules/adapter/provider/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/adapter/provider/provider.json -------------------------------------------------------------------------------- /src/modules/config/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/authentication.json -------------------------------------------------------------------------------- /src/modules/config/controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/controller.json -------------------------------------------------------------------------------- /src/modules/config/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/dns.json -------------------------------------------------------------------------------- /src/modules/config/experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/experimental.json -------------------------------------------------------------------------------- /src/modules/config/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/general.json -------------------------------------------------------------------------------- /src/modules/config/geox-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/geox-url.json -------------------------------------------------------------------------------- /src/modules/config/hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/hosts.json -------------------------------------------------------------------------------- /src/modules/config/inbound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/inbound.json -------------------------------------------------------------------------------- /src/modules/config/iptables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/iptables.json -------------------------------------------------------------------------------- /src/modules/config/listeners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/listeners.json -------------------------------------------------------------------------------- /src/modules/config/ntp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/ntp.json -------------------------------------------------------------------------------- /src/modules/config/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/profile.json -------------------------------------------------------------------------------- /src/modules/config/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/proxies.json -------------------------------------------------------------------------------- /src/modules/config/proxy-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/proxy-groups.json -------------------------------------------------------------------------------- /src/modules/config/proxy-providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/proxy-providers.json -------------------------------------------------------------------------------- /src/modules/config/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/rules.json -------------------------------------------------------------------------------- /src/modules/config/sniffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/sniffer.json -------------------------------------------------------------------------------- /src/modules/config/sub-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/sub-rules.json -------------------------------------------------------------------------------- /src/modules/config/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/tls.json -------------------------------------------------------------------------------- /src/modules/config/tunnels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/config/tunnels.json -------------------------------------------------------------------------------- /src/modules/listener/config/tuic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/config/tuic.json -------------------------------------------------------------------------------- /src/modules/listener/config/tun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/config/tun.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/anytls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/anytls.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/auth.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/base.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/http.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/hysteria2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/hysteria2.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/mieru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/mieru.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/mixed.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/mux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/mux.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/reality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/reality.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/redir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/redir.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/shadowsocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/shadowsocks.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/socks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/socks.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/tproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/tproxy.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/trojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/trojan.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/tuic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/tuic.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/tun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/tun.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/tunnel.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/vless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/vless.json -------------------------------------------------------------------------------- /src/modules/listener/inbound/vmess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/inbound/vmess.json -------------------------------------------------------------------------------- /src/modules/listener/sing/sing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/listener/sing/sing.json -------------------------------------------------------------------------------- /src/modules/rules/provider/inline-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/rules/provider/inline-rule.json -------------------------------------------------------------------------------- /src/modules/rules/provider/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/rules/provider/provider.json -------------------------------------------------------------------------------- /src/modules/rules/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/src/modules/rules/rule.json -------------------------------------------------------------------------------- /test/clash-meta/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/test/clash-meta/example.yaml -------------------------------------------------------------------------------- /test/clash-nyanpasu/merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/test/clash-nyanpasu/merge.yaml -------------------------------------------------------------------------------- /test/clash-verge/merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongchengjie/meta-json-schema/HEAD/test/clash-verge/merge.yaml --------------------------------------------------------------------------------