-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 2.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "arclib",
"version": "0.1.0",
"license": "MIT",
"author": "erik aronesty",
"main": "dist/index.js",
"module": "dist/arclib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "eslint src/** test/**",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"test": "dts test",
"format": "prettier --write src test"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=12",
"yarn": ">=1"
},
"coverageThreshold": {
"global": {
"branches": 45,
"functions": 84,
"lines": 84,
"statements": 84
}
},
"size-limit": [
{
"path": "dist/arclib.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/arclib.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-class-static-block": "^7.21.0",
"@babel/plugin-proposal-decorators": "^7.22.3",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.5.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.1",
"@types/lru-cache": "^7.10.10",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"any-sqlite": "^1.0.2",
"babel": "^6.23.0",
"babel-jest": "^29.5.0",
"better-sqlite3": "^8.3.0",
"dts-cli": "^2.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"nostrmini": "^1.1.3",
"prettier": "^2.8.8",
"size-limit": "^8.2.4",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"websocket-polyfill": "^0.0.3"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@noble/curves": "^1.0.0",
"@scure/base": "^1.1.1",
"isomorphic-unfetch": "^3.0.1",
"lru-cache": "^10.0.0",
"nostr-tools": "^1.13.0"
},
"peerDependencies": {
"any-sqlite": "^1.0",
"expo-crypto": ">12",
"isomorphic-webcrypto": ">2"
},
"peerDependenciesMeta": {
"any-sqlite": {
"optional": true
}
}
}