create-avalanche-app 0.1.0

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.
Files changed (83) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +43 -0
  3. package/dist/api.d.ts +34 -0
  4. package/dist/api.js +12 -0
  5. package/dist/api.js.map +1 -0
  6. package/dist/chunk-3YGRLI4R.js +91 -0
  7. package/dist/chunk-3YGRLI4R.js.map +1 -0
  8. package/dist/index.js +213 -0
  9. package/dist/index.js.map +1 -0
  10. package/package.json +65 -0
  11. package/templates/erc20-token/CLAUDE.md +45 -0
  12. package/templates/erc20-token/README.md +35 -0
  13. package/templates/erc20-token/app/globals.css +95 -0
  14. package/templates/erc20-token/app/layout.tsx +23 -0
  15. package/templates/erc20-token/app/page.tsx +5 -0
  16. package/templates/erc20-token/app/providers.tsx +30 -0
  17. package/templates/erc20-token/components/demo.tsx +178 -0
  18. package/templates/erc20-token/contracts/foundry.toml +9 -0
  19. package/templates/erc20-token/contracts/src/AvaKitToken.sol +53 -0
  20. package/templates/erc20-token/cursor/rules/avakit.mdc +31 -0
  21. package/templates/erc20-token/env.example +4 -0
  22. package/templates/erc20-token/gitignore +15 -0
  23. package/templates/erc20-token/lib/token-artifact.ts +239 -0
  24. package/templates/erc20-token/llms.txt +29 -0
  25. package/templates/erc20-token/manifest.json +6 -0
  26. package/templates/erc20-token/next.config.ts +7 -0
  27. package/templates/erc20-token/package.json +32 -0
  28. package/templates/erc20-token/postcss.config.mjs +7 -0
  29. package/templates/erc20-token/tsconfig.json +23 -0
  30. package/templates/minimal/CLAUDE.md +37 -0
  31. package/templates/minimal/README.md +32 -0
  32. package/templates/minimal/app/globals.css +95 -0
  33. package/templates/minimal/app/layout.tsx +23 -0
  34. package/templates/minimal/app/page.tsx +5 -0
  35. package/templates/minimal/app/providers.tsx +30 -0
  36. package/templates/minimal/components/demo.tsx +135 -0
  37. package/templates/minimal/cursor/rules/avakit.mdc +28 -0
  38. package/templates/minimal/env.example +4 -0
  39. package/templates/minimal/gitignore +10 -0
  40. package/templates/minimal/llms.txt +30 -0
  41. package/templates/minimal/manifest.json +6 -0
  42. package/templates/minimal/next.config.ts +7 -0
  43. package/templates/minimal/package.json +32 -0
  44. package/templates/minimal/postcss.config.mjs +7 -0
  45. package/templates/minimal/tsconfig.json +23 -0
  46. package/templates/nft-mint/CLAUDE.md +45 -0
  47. package/templates/nft-mint/README.md +36 -0
  48. package/templates/nft-mint/app/globals.css +95 -0
  49. package/templates/nft-mint/app/layout.tsx +23 -0
  50. package/templates/nft-mint/app/page.tsx +5 -0
  51. package/templates/nft-mint/app/providers.tsx +30 -0
  52. package/templates/nft-mint/components/demo.tsx +176 -0
  53. package/templates/nft-mint/contracts/foundry.toml +9 -0
  54. package/templates/nft-mint/contracts/src/AvaKitNFT.sol +57 -0
  55. package/templates/nft-mint/cursor/rules/avakit.mdc +32 -0
  56. package/templates/nft-mint/env.example +4 -0
  57. package/templates/nft-mint/gitignore +15 -0
  58. package/templates/nft-mint/lib/nft-artifact.ts +164 -0
  59. package/templates/nft-mint/llms.txt +31 -0
  60. package/templates/nft-mint/manifest.json +6 -0
  61. package/templates/nft-mint/next.config.ts +7 -0
  62. package/templates/nft-mint/package.json +32 -0
  63. package/templates/nft-mint/postcss.config.mjs +7 -0
  64. package/templates/nft-mint/tsconfig.json +23 -0
  65. package/templates/token-gated-app/CLAUDE.md +45 -0
  66. package/templates/token-gated-app/README.md +38 -0
  67. package/templates/token-gated-app/app/globals.css +95 -0
  68. package/templates/token-gated-app/app/layout.tsx +23 -0
  69. package/templates/token-gated-app/app/page.tsx +5 -0
  70. package/templates/token-gated-app/app/providers.tsx +30 -0
  71. package/templates/token-gated-app/components/demo.tsx +161 -0
  72. package/templates/token-gated-app/contracts/foundry.toml +9 -0
  73. package/templates/token-gated-app/contracts/src/AvaKitNFT.sol +57 -0
  74. package/templates/token-gated-app/cursor/rules/avakit.mdc +36 -0
  75. package/templates/token-gated-app/env.example +4 -0
  76. package/templates/token-gated-app/gitignore +15 -0
  77. package/templates/token-gated-app/lib/nft-artifact.ts +164 -0
  78. package/templates/token-gated-app/llms.txt +33 -0
  79. package/templates/token-gated-app/manifest.json +6 -0
  80. package/templates/token-gated-app/next.config.ts +7 -0
  81. package/templates/token-gated-app/package.json +32 -0
  82. package/templates/token-gated-app/postcss.config.mjs +7 -0
  83. package/templates/token-gated-app/tsconfig.json +23 -0
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "__PROJECT_NAME__",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "next dev",
8
+ "build": "next build",
9
+ "start": "next start",
10
+ "typecheck": "tsc --noEmit"
11
+ },
12
+ "dependencies": {
13
+ "@avakit/core": "__AVAKIT_DEP__",
14
+ "@avakit/react": "__AVAKIT_DEP__",
15
+ "lucide-react": "1.22.0",
16
+ "next": "16.2.9",
17
+ "next-themes": "0.4.6",
18
+ "react": "19.2.7",
19
+ "react-dom": "19.2.7",
20
+ "viem": "2.54.1"
21
+ },
22
+ "devDependencies": {
23
+ "@tailwindcss/postcss": "4.3.2",
24
+ "@types/node": "26.0.1",
25
+ "@types/react": "19.2.17",
26
+ "@types/react-dom": "19.2.3",
27
+ "postcss": "8.5.16",
28
+ "tailwindcss": "4.3.2",
29
+ "tw-animate-css": "1.4.0",
30
+ "typescript": "6.0.3"
31
+ }
32
+ }
@@ -0,0 +1,7 @@
1
+ const config = {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ },
5
+ };
6
+
7
+ export default config;
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "strict": true,
8
+ "noEmit": true,
9
+ "esModuleInterop": true,
10
+ "module": "esnext",
11
+ "moduleResolution": "bundler",
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "jsx": "preserve",
15
+ "incremental": true,
16
+ "plugins": [{ "name": "next" }],
17
+ "paths": {
18
+ "@/*": ["./*"]
19
+ }
20
+ },
21
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
22
+ "exclude": ["node_modules"]
23
+ }