-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@solana-foundation/templates",
"version": "1.0.0",
"description": "Solana Templates for create-solana-dapp",
"main": "index.js",
"scripts": {
"clean": "tsx scripts/clean.ts",
"create-image": "tsx scripts/create-image.ts",
"generate": "tsx scripts/generate.ts && automd",
"format": "prettier --write .",
"lint": "tsx scripts/lint.ts && prettier --check .",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "pnpm -r update --latest",
"validate": "tsx scripts/validate.ts"
},
"keywords": [],
"author": "Solana Developers",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.5.2",
"@vercel/og": "^0.7.2",
"automd": "^0.4.2",
"prettier": "^3.6.2",
"puppeteer": "^23.11.1",
"sharp": "^0.33.5",
"tsx": "^4.19.2"
},
"repokit": {
"groups": [
{
"description": "Kit Templates (using @solana/kit)",
"name": "Kit",
"path": "kit"
},
{
"description": "Solana Mobile Templates",
"path": "mobile",
"name": "Solana Mobile"
},
{
"description": "Templates using @solana/web3.js (legacy)",
"name": "Web3.js Templates",
"path": "web3js"
},
{
"description": "Templates maintained by the Solana community",
"name": "Community Templates",
"path": "community"
},
{
"description": "Pinocchio-based program templates",
"name": "Pinocchio",
"path": "pinocchio"
}
]
},
"repository": {
"name": "solana-foundation/templates",
"type": "git",
"url": "https://github.com/solana-foundation/templates"
}
}