-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
53
54
55
56
57
58
{
"name": "@bitfinity-network/bitfinitywallet",
"version": "0.3.0",
"description": "Bitfinitywallet utils and types",
"author": "Bitfinity <support@infinityswap.one> (https://bitfinity.network/)",
"type": "module",
"source": "src/index.ts",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"repository": "https://github.com/bitfinity-network/bitdns",
"license": "MIT",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"lint": "eslint --fix \"src/**/\"",
"lint:check": "eslint \"src/**/\"",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --ci",
"prettier": "prettier --write .",
"prepublishOnly": "rm -rf dist && npm run build"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.1.0"
},
"dependencies": {},
"peerDependencies": {
"@dfinity/agent": ">=0.15.3 <=1.3.0",
"@dfinity/candid": ">=0.15.3 <=1.3.0",
"@dfinity/principal": ">=0.15.3 <=1.3.0"
}
}