-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "bundled-ethers",
"version": "1.0.0",
"description": "Template repository for using TypeScript",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"index.ts",
"rollup.config.js",
"tsconfig.json"
],
"types": "/dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepare": "husky install",
"postinstall": "npm run build"
},
"author": "Dev Protocol",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"ethers": "^6.0.0",
"rimraf": "5.0.10",
"rollup": "^2.75.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-functional": "4.4.1",
"husky": "8.0.3",
"prettier": "3.8.3",
"typescript": "5.9.3"
},
"repository": "git+https://github.com/dev-protocol/template-repos-ts.git",
"bugs": {
"url": "https://github.com/dev-protocol/template-repos-ts/issues"
},
"homepage": "https://github.com/dev-protocol/template-repos-ts#readme"
}