-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "template-repos-cjs-esm",
"version": "1.0.0",
"description": "Template repository for convert Commonjs module to ES module",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"files": [
"dist",
"index.ts",
"rollup.config.js"
],
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prebuild": "rimraf dist",
"lint": "yarn lint:format",
"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": "^28.0.0",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@types/elliptic": "^6.4.17",
"elliptic": "^6.5.4",
"ethers": "^6.0.0",
"rimraf": "5.0.10",
"rollup": "^4.0.0",
"tslib": "^2.6.2",
"typescript": "5.7.3"
},
"devDependencies": {
"husky": "9.1.7",
"prettier": "3.4.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dev-protocol/template-repos-cjs-esm.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/template-repos-cjs-esm/issues"
},
"homepage": "https://github.com/dev-protocol/template-repos-cjs-esm#readme"
}