-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "tokenlist",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"directory": "apps/tokenlist",
"url": "https://github.com/tempoxyz/tempo-apps"
},
"imports": {
"#*": "./src/*",
"#data/*": "./data/*",
"#schema/*": "./schema/*",
"#package.json": "./package.json"
},
"scripts": {
"dev": "vite dev",
"preview": "vite preview",
"build": "vite build",
"check": "pnpm check:biome && pnpm check:types",
"check:biome": "biome check --write --unsafe",
"check:types": "tsgo --project tsconfig.json --noEmit",
"process-icons": "node ./scripts/svg2g.ts",
"tail": "wrangler tail",
"gen:types": "wrangler types --env-interface='CloudflareBindings' --env-file='.env.example'",
"postinstall": "pnpm gen:types"
},
"dependencies": {
"hono": "catalog:",
"svgo": "^4.0.1",
"viem": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@cloudflare/vite-plugin": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@total-typescript/ts-reset": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"wrangler": "catalog:"
},
"license": "MIT"
}