This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 1.5 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
63
64
65
66
{
"version": "0.1.22",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/irislib/iris-lib",
"homepage": "https://docs.iris.to",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch --name iris",
"build": "tsdx build --format cjs,esm,umd --name iris",
"build:docs": "documentation build src/** --shallow -f html -o docs --config documentation.yml",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build --name iris",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es6"
},
"name": "iris-lib",
"author": "Martti Malmi",
"module": "dist/iris.esm.js",
"size-limit": [
{
"path": "dist/iris.cjs.production.min.js",
"limit": "300 KB"
},
{
"path": "dist/iris.esm.js",
"limit": "300 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"documentation": "^14.0.0",
"husky": "^8.0.1",
"size-limit": "^8.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@noble/secp256k1": "^1.7.0",
"elliptic": "^6.5.4",
"fuse.js": "^6.6.2",
"gun": "https://github.com/mmalmi/gun",
"localforage": "^1.10.0"
}
}