-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 1.79 KB
/
package.json
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
{
"name": "@crocswap-libs/ambient-utils",
"version": "0.1.0",
"license": "MIT",
"author": "surudhb",
"main": "dist/index.js",
"module": "dist/mylib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"start": "npx dts watch",
"test": "dts test",
"postinstall": "npx husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"dts lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 110,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(wagmi|@wagmi/core)/)"
]
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/mylib.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/mylib.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.23.3",
"@size-limit/preset-small-lib": "^10.0.1",
"@tsconfig/recommended": "^1.0.3",
"@types/d3": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-jest": "^29.7.0",
"dts-cli": "^2.0.3",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"size-limit": "^10.0.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^4.4.2"
},
"dependencies": {
}
}