forked from 0xa3k5/web3icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.55 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.55 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
63
64
65
66
67
68
69
70
{
"name": "web3icons",
"description": "monorepo for web3 icons",
"private": false,
"author": "0xa3k5",
"scripts": {
"build": "turbo build && bun post-build",
"build:packages": "turbo build --filter=@web3icons/common --filter=@web3icons/core --filter=@web3icons/react && bun post-build",
"build:apps": "turbo build --filter=@web3icons/website --filter=@web3icons/figma-plugin",
"build:common": "turbo build --filter=@web3icons/common && bun post-build",
"build:core": "turbo build --filter=@web3icons/core",
"build:react": "turbo build --filter=@web3icons/react",
"build:website": "turbo build --filter=@web3icons/website",
"build:figma": "turbo build --filter=@web3icons/figma-plugin",
"post-build": "bun generate-icons-md && bun format",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx,json}\" --log-level error",
"add-icons": "bun ./scripts/cli/add-icons.ts",
"add-metadata": "bun ./scripts/cli/add-icons.ts --metadata-only",
"delete-icons": "bun ./scripts/cli/delete-icons.ts",
"check-missing": "bun ./scripts/cli/check-missing-metadata.ts",
"generate-icons-md": "bun ./scripts/maintenance/generate-icons-md.ts",
"cdn:sync": "bun ./scripts/sync-to-r2.ts",
"validate-svgs": "bun ./scripts/maintenance/validate-svgs.ts",
"validate-filenames": "bun ./scripts/cli/validate-filenames.ts",
"changeset": "changeset",
"version": "changeset version && bun install --frozen-lockfile",
"release": "bun build:packages && changeset publish"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.478.0",
"@changesets/cli": "^2.27.7",
"@clack/prompts": "^0.9.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@web3icons/common": "*",
"@web3icons/eslint-config": "*",
"chalk": "^5.4.1",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^17.2.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"rollup-plugin-string": "^3.0.0",
"svgo": "^3.2.0",
"turbo": "v2.0.11",
"typescript": "5.3.3",
"website": "^0.1.1"
},
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.3.4",
"workspaces": [
"packages/*",
"apps/*"
],
"resolutions": {
"typescript": "5.3.3",
"esbuild": "^0.19.12"
},
"dependencies": {
"changesets": "^1.0.2"
}
}