-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@risedle/quotes",
"version": "2.0.0",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist",
"README.md"
],
"homepage": "https://risedle.com",
"repository": {
"type": "git",
"url": "git+https://github.com/risedle/monorepo.git"
},
"bugs": {
"url": "https://github.com/risedle/monorepo/issues"
},
"author": {
"name": "bayu",
"email": "[email protected]",
"url": "https://github.com/pyk"
},
"contributors": [],
"scripts": {
"prettier": "prettier --check .",
"lint": "eslint .",
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build"
},
"prettier": "@risedle/prettier-config",
"dependencies": {
"@ethersproject/bignumber": "5.6.2"
},
"devDependencies": {
"@risedle/eslint-config": "0.1.2",
"@risedle/prettier-config": "0.2.0",
"@risedle/tsconfig": "1.0.1",
"eslint": "8.23.0",
"prettier": "2.7.1",
"typescript": "4.8.2"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"publishConfig": {
"access": "public"
}
}