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.
- package/LICENSE +21 -0
- package/README.md +43 -0
- package/dist/api.d.ts +34 -0
- package/dist/api.js +12 -0
- package/dist/api.js.map +1 -0
- package/dist/chunk-3YGRLI4R.js +91 -0
- package/dist/chunk-3YGRLI4R.js.map +1 -0
- package/dist/index.js +213 -0
- package/dist/index.js.map +1 -0
- package/package.json +65 -0
- package/templates/erc20-token/CLAUDE.md +45 -0
- package/templates/erc20-token/README.md +35 -0
- package/templates/erc20-token/app/globals.css +95 -0
- package/templates/erc20-token/app/layout.tsx +23 -0
- package/templates/erc20-token/app/page.tsx +5 -0
- package/templates/erc20-token/app/providers.tsx +30 -0
- package/templates/erc20-token/components/demo.tsx +178 -0
- package/templates/erc20-token/contracts/foundry.toml +9 -0
- package/templates/erc20-token/contracts/src/AvaKitToken.sol +53 -0
- package/templates/erc20-token/cursor/rules/avakit.mdc +31 -0
- package/templates/erc20-token/env.example +4 -0
- package/templates/erc20-token/gitignore +15 -0
- package/templates/erc20-token/lib/token-artifact.ts +239 -0
- package/templates/erc20-token/llms.txt +29 -0
- package/templates/erc20-token/manifest.json +6 -0
- package/templates/erc20-token/next.config.ts +7 -0
- package/templates/erc20-token/package.json +32 -0
- package/templates/erc20-token/postcss.config.mjs +7 -0
- package/templates/erc20-token/tsconfig.json +23 -0
- package/templates/minimal/CLAUDE.md +37 -0
- package/templates/minimal/README.md +32 -0
- package/templates/minimal/app/globals.css +95 -0
- package/templates/minimal/app/layout.tsx +23 -0
- package/templates/minimal/app/page.tsx +5 -0
- package/templates/minimal/app/providers.tsx +30 -0
- package/templates/minimal/components/demo.tsx +135 -0
- package/templates/minimal/cursor/rules/avakit.mdc +28 -0
- package/templates/minimal/env.example +4 -0
- package/templates/minimal/gitignore +10 -0
- package/templates/minimal/llms.txt +30 -0
- package/templates/minimal/manifest.json +6 -0
- package/templates/minimal/next.config.ts +7 -0
- package/templates/minimal/package.json +32 -0
- package/templates/minimal/postcss.config.mjs +7 -0
- package/templates/minimal/tsconfig.json +23 -0
- package/templates/nft-mint/CLAUDE.md +45 -0
- package/templates/nft-mint/README.md +36 -0
- package/templates/nft-mint/app/globals.css +95 -0
- package/templates/nft-mint/app/layout.tsx +23 -0
- package/templates/nft-mint/app/page.tsx +5 -0
- package/templates/nft-mint/app/providers.tsx +30 -0
- package/templates/nft-mint/components/demo.tsx +176 -0
- package/templates/nft-mint/contracts/foundry.toml +9 -0
- package/templates/nft-mint/contracts/src/AvaKitNFT.sol +57 -0
- package/templates/nft-mint/cursor/rules/avakit.mdc +32 -0
- package/templates/nft-mint/env.example +4 -0
- package/templates/nft-mint/gitignore +15 -0
- package/templates/nft-mint/lib/nft-artifact.ts +164 -0
- package/templates/nft-mint/llms.txt +31 -0
- package/templates/nft-mint/manifest.json +6 -0
- package/templates/nft-mint/next.config.ts +7 -0
- package/templates/nft-mint/package.json +32 -0
- package/templates/nft-mint/postcss.config.mjs +7 -0
- package/templates/nft-mint/tsconfig.json +23 -0
- package/templates/token-gated-app/CLAUDE.md +45 -0
- package/templates/token-gated-app/README.md +38 -0
- package/templates/token-gated-app/app/globals.css +95 -0
- package/templates/token-gated-app/app/layout.tsx +23 -0
- package/templates/token-gated-app/app/page.tsx +5 -0
- package/templates/token-gated-app/app/providers.tsx +30 -0
- package/templates/token-gated-app/components/demo.tsx +161 -0
- package/templates/token-gated-app/contracts/foundry.toml +9 -0
- package/templates/token-gated-app/contracts/src/AvaKitNFT.sol +57 -0
- package/templates/token-gated-app/cursor/rules/avakit.mdc +36 -0
- package/templates/token-gated-app/env.example +4 -0
- package/templates/token-gated-app/gitignore +15 -0
- package/templates/token-gated-app/lib/nft-artifact.ts +164 -0
- package/templates/token-gated-app/llms.txt +33 -0
- package/templates/token-gated-app/manifest.json +6 -0
- package/templates/token-gated-app/next.config.ts +7 -0
- package/templates/token-gated-app/package.json +32 -0
- package/templates/token-gated-app/postcss.config.mjs +7 -0
- 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,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
|
+
}
|