-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "@seljs-internal/fixtures",
"license": "Apache-2.0",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format:check": "prettier --check '{src/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}'",
"format:fix": "prettier --write '{src/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}'",
"lint:check": "eslint '{src/**/*,*}.{t,j}s{,x}'",
"lint:fix": "eslint '{src/**/*,*}.{t,j}s{,x}' --fix",
"test-unit": "vitest run",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"{src/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}": [
"prettier --write"
],
"{src/**/*,*}.{t,j}s{,x}": [
"eslint --fix"
]
},
"dependencies": {
"abitype": "^1.2.3",
"viem": "^2.47.2"
},
"devDependencies": {
"@abinnovision/eslint-config-base": "^3.2.0",
"@abinnovision/prettier-config": "^2.1.5",
"@seljs-internal/tsconfig": "workspace:^",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}