├── .gitignore ├── LICENSE ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── index.html ├── package.json ├── release ├── preview-template.zip └── preview-template │ ├── dist │ ├── assets │ │ ├── index.741f95c0.css │ │ └── index.95bf25f5.js │ └── index.html │ ├── index.ejs │ └── version.json ├── screenshots └── preview.png ├── scripts ├── package.js └── setup.js ├── src ├── App.vue ├── components │ ├── CCComponent.vue │ ├── CCNode.vue │ ├── ProfilerPanel.vue │ ├── PropItem.vue │ ├── TreePanel.vue │ └── UserComponent.vue ├── env.d.ts ├── main.ts └── misc │ ├── ComponentManager.ts │ └── Utils.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/components.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/package.json -------------------------------------------------------------------------------- /release/preview-template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template.zip -------------------------------------------------------------------------------- /release/preview-template/dist/assets/index.741f95c0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template/dist/assets/index.741f95c0.css -------------------------------------------------------------------------------- /release/preview-template/dist/assets/index.95bf25f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template/dist/assets/index.95bf25f5.js -------------------------------------------------------------------------------- /release/preview-template/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template/dist/index.html -------------------------------------------------------------------------------- /release/preview-template/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template/index.ejs -------------------------------------------------------------------------------- /release/preview-template/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/release/preview-template/version.json -------------------------------------------------------------------------------- /screenshots/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/screenshots/preview.png -------------------------------------------------------------------------------- /scripts/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/scripts/package.js -------------------------------------------------------------------------------- /scripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/scripts/setup.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/CCComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/CCComponent.vue -------------------------------------------------------------------------------- /src/components/CCNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/CCNode.vue -------------------------------------------------------------------------------- /src/components/ProfilerPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/ProfilerPanel.vue -------------------------------------------------------------------------------- /src/components/PropItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/PropItem.vue -------------------------------------------------------------------------------- /src/components/TreePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/TreePanel.vue -------------------------------------------------------------------------------- /src/components/UserComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/components/UserComponent.vue -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/misc/ComponentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/misc/ComponentManager.ts -------------------------------------------------------------------------------- /src/misc/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/src/misc/Utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato47/ccc-devtools/HEAD/yarn.lock --------------------------------------------------------------------------------