-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "@cyberlab/cyber-account",
"version": "2.3.4",
"description": "",
"main": "index.js",
"types": "./lib/cjs/types/index.d.ts",
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"clean": "rm -rf ./lib",
"test": "jest",
"build": "pnpm run test && pnpm run clean && pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "pnpm run build",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "CyberConnect",
"license": "MIT",
"dependencies": {
"viem": "^1.17.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.4",
"@types/node": "^20.8.9",
"babel-jest": "^29.6.3",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"semantic-release": "^21.0.9",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/cyberconnecthq/cyber-account.git"
},
"publishConfig": {
"access": "public"
}
}