-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@bitsocial/bso-resolver",
"version": "0.0.1",
"type": "module",
"license": "GPL-2.0-only",
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js",
"default": "./dist/browser.js"
},
"./node": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"pretest": "npm run build",
"test": "vitest run",
"test:browser": "vitest run --project browser",
"test:browser:install": "playwright install chromium firefox",
"test:browser:watch": "vitest --project browser",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky && tsup",
"release": "HUSKY=0 release-it --config config/.release-it.json"
},
"dependencies": {
"@plebbit/plebbit-logger": "github:plebbit/plebbit-logger#355a96d7659ed820047980049dfa627d30d83a69",
"better-sqlite3": "12.6.2",
"viem": "2.47.0"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@release-it/conventional-changelog": "10.0.5",
"@types/better-sqlite3": "7.6.13",
"@vitest/browser-playwright": "4.0.18",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"fake-indexeddb": "6.2.5",
"husky": "9.1.7",
"playwright": "1.58.2",
"release-it": "19.2.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}