@spicemod/creator 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/README.md +35 -0
- package/dist/bin.d.mts +1 -0
- package/dist/bin.mjs +1739 -0
- package/dist/client/index.d.mts +2175 -0
- package/dist/client/index.mjs +7 -0
- package/dist/templates/extension/js/react/eslint.config.js +29 -0
- package/dist/templates/extension/js/react/src/app.jsx +27 -0
- package/dist/templates/extension/js/react/src/components/Onboarding.jsx +72 -0
- package/dist/templates/extension/js/vanilla/components/Onboarding.js +71 -0
- package/dist/templates/extension/js/vanilla/eslint.config.js +16 -0
- package/dist/templates/extension/js/vanilla/src/app.js +12 -0
- package/dist/templates/extension/meta.json +4 -0
- package/dist/templates/extension/shared/.oxlintrc.json +36 -0
- package/dist/templates/extension/shared/README.template.md +53 -0
- package/dist/templates/extension/shared/app.css +163 -0
- package/dist/templates/extension/shared/biome.json +36 -0
- package/dist/templates/extension/shared/css.d.ts +44 -0
- package/dist/templates/extension/shared/jsconfig.json +32 -0
- package/dist/templates/extension/shared/spice.config.js +9 -0
- package/dist/templates/extension/shared/spice.config.ts +9 -0
- package/dist/templates/extension/shared/tsconfig.json +32 -0
- package/dist/templates/extension/ts/react/eslint.config.ts +29 -0
- package/dist/templates/extension/ts/react/src/app.tsx +27 -0
- package/dist/templates/extension/ts/react/src/components/Onboarding.tsx +83 -0
- package/dist/templates/extension/ts/vanilla/biome.json +36 -0
- package/dist/templates/extension/ts/vanilla/eslint.config.ts +16 -0
- package/dist/templates/extension/ts/vanilla/src/app.ts +12 -0
- package/dist/templates/extension/ts/vanilla/src/components/Onboarding.ts +79 -0
- package/dist/templates/liveReload.js +70 -0
- package/dist/templates/theme/js/react/eslint.config.js +29 -0
- package/dist/templates/theme/js/react/src/app.jsx +25 -0
- package/dist/templates/theme/js/react/src/components/Onboarding.jsx +72 -0
- package/dist/templates/theme/js/vanilla/eslint.config.js +16 -0
- package/dist/templates/theme/js/vanilla/src/app.js +11 -0
- package/dist/templates/theme/js/vanilla/src/components/Onboarding.js +71 -0
- package/dist/templates/theme/meta.json +4 -0
- package/dist/templates/theme/shared/.oxlintrc.json +36 -0
- package/dist/templates/theme/shared/README.template.md +53 -0
- package/dist/templates/theme/shared/app.css +163 -0
- package/dist/templates/theme/shared/biome.json +36 -0
- package/dist/templates/theme/shared/css.d.ts +44 -0
- package/dist/templates/theme/shared/jsconfig.json +31 -0
- package/dist/templates/theme/shared/spice.config.js +9 -0
- package/dist/templates/theme/shared/spice.config.ts +9 -0
- package/dist/templates/theme/shared/tsconfig.json +32 -0
- package/dist/templates/theme/ts/react/eslint.config.ts +29 -0
- package/dist/templates/theme/ts/react/src/app.tsx +26 -0
- package/dist/templates/theme/ts/react/src/components/Onboarding.tsx +83 -0
- package/dist/templates/theme/ts/vanilla/eslint.config.ts +16 -0
- package/dist/templates/theme/ts/vanilla/src/app.ts +11 -0
- package/dist/templates/theme/ts/vanilla/src/components/Onboarding.ts +79 -0
- package/dist/templates/wrapper.js +48 -0
- package/package.json +80 -0
- package/templates/extension/js/react/eslint.config.js +29 -0
- package/templates/extension/js/react/src/app.jsx +27 -0
- package/templates/extension/js/react/src/components/Onboarding.jsx +72 -0
- package/templates/extension/js/vanilla/components/Onboarding.js +71 -0
- package/templates/extension/js/vanilla/eslint.config.js +16 -0
- package/templates/extension/js/vanilla/src/app.js +12 -0
- package/templates/extension/meta.json +4 -0
- package/templates/extension/shared/.oxlintrc.json +36 -0
- package/templates/extension/shared/README.template.md +53 -0
- package/templates/extension/shared/app.css +163 -0
- package/templates/extension/shared/biome.json +36 -0
- package/templates/extension/shared/css.d.ts +44 -0
- package/templates/extension/shared/jsconfig.json +32 -0
- package/templates/extension/shared/spice.config.js +9 -0
- package/templates/extension/shared/spice.config.ts +9 -0
- package/templates/extension/shared/tsconfig.json +32 -0
- package/templates/extension/ts/react/eslint.config.ts +29 -0
- package/templates/extension/ts/react/src/app.tsx +27 -0
- package/templates/extension/ts/react/src/components/Onboarding.tsx +83 -0
- package/templates/extension/ts/vanilla/biome.json +36 -0
- package/templates/extension/ts/vanilla/eslint.config.ts +16 -0
- package/templates/extension/ts/vanilla/src/app.ts +12 -0
- package/templates/extension/ts/vanilla/src/components/Onboarding.ts +79 -0
- package/templates/liveReload.js +70 -0
- package/templates/theme/js/react/eslint.config.js +29 -0
- package/templates/theme/js/react/src/app.jsx +25 -0
- package/templates/theme/js/react/src/components/Onboarding.jsx +72 -0
- package/templates/theme/js/vanilla/eslint.config.js +16 -0
- package/templates/theme/js/vanilla/src/app.js +11 -0
- package/templates/theme/js/vanilla/src/components/Onboarding.js +71 -0
- package/templates/theme/meta.json +4 -0
- package/templates/theme/shared/.oxlintrc.json +36 -0
- package/templates/theme/shared/README.template.md +53 -0
- package/templates/theme/shared/app.css +163 -0
- package/templates/theme/shared/biome.json +36 -0
- package/templates/theme/shared/css.d.ts +44 -0
- package/templates/theme/shared/jsconfig.json +31 -0
- package/templates/theme/shared/spice.config.js +9 -0
- package/templates/theme/shared/spice.config.ts +9 -0
- package/templates/theme/shared/tsconfig.json +32 -0
- package/templates/theme/ts/react/eslint.config.ts +29 -0
- package/templates/theme/ts/react/src/app.tsx +26 -0
- package/templates/theme/ts/react/src/components/Onboarding.tsx +83 -0
- package/templates/theme/ts/vanilla/eslint.config.ts +16 -0
- package/templates/theme/ts/vanilla/src/app.ts +11 -0
- package/templates/theme/ts/vanilla/src/components/Onboarding.ts +79 -0
- package/templates/wrapper.js +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @spicetify/creator
|
|
2
|
+
|
|
3
|
+
A CLI tool to easily create, develop, and build Spicetify extensions and themes.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
You can scaffold a new project immediately using `npx` or `bunx`:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Using npm
|
|
11
|
+
npx @spicetify/creator create
|
|
12
|
+
|
|
13
|
+
# Using bun
|
|
14
|
+
bunx @spicetify/creator create
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Commands
|
|
18
|
+
|
|
19
|
+
- **`create`**: Scaffold a new project with interactive prompts.
|
|
20
|
+
- **`dev`**: Start a local development server for real-time updates.
|
|
21
|
+
- **`build`**: Compile your project; use `-a` to apply it immediately to
|
|
22
|
+
Spicetify.
|
|
23
|
+
|
|
24
|
+
## Features
|
|
25
|
+
|
|
26
|
+
- **Instant Scaffolding**: Quickly set up extensions or themes with optimized
|
|
27
|
+
defaults.
|
|
28
|
+
- **Fast Bundling**: High-performance compilation powered by `esbuild`.
|
|
29
|
+
- **Modern Stack**: Out-of-the-box support for TypeScript, React, and SCSS.
|
|
30
|
+
- **Live Preview**: Built-in hot-reloading support.
|
|
31
|
+
- **Flexible Tooling**: Integrated support for Oxlint, ESLint, and Biome.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
This project is licensed under the [**GPL-3.0 License**](LICENSE).
|
package/dist/bin.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|