-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.73 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.73 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@indexcoop/tokenlists",
"version": "4.7.2",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist", "README.md"],
"type": "module",
"scripts": {
"lint": "bunx @biomejs/biome lint",
"format": "bunx @biomejs/biome format . --write",
"list:validate": "bun ./scripts/run-validate-only.ts",
"list:build": "bun ./scripts/index.ts",
"list:bundle": "bun tsup && bun copy-tokenlist",
"copy-tokenlist": "shx cp ./*.tokenlist.json ./dist",
"test": "jest",
"coverage": "jest --coverage"
},
"release": {
"branches": ["main"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "major",
"release": "major"
},
{
"type": "remove",
"release": "major"
},
{
"type": "list",
"release": "minor"
},
{
"type": "change",
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "build",
"release": "patch"
},
{
"type": "ignore",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/**"
}
]
}
]
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bun": "latest",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"coverage-badge-creator": "^1.0.19",
"dotenv": "^16.4.5",
"fast-check": "^3.22.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lodash": "^4.17.21",
"semantic-release": "^24.1.1",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@uniswap/token-lists": "^1.0.0-beta.34",
"viem": "^2.21.14"
}
}