-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "vitest-nostr",
"version": "0.4.1",
"description": "vitest utilities for Nostr client",
"author": "penpenpng",
"keywords": [
"nostr",
"vitest",
"faker",
"custom-matcher",
"websocket-mock"
],
"homepage": "https://github.com/penpenpng/vitest-nostr/",
"bugs": {
"url": "https://github.com/penpenpng/vitest-nostr/issues"
},
"license": "MIT",
"type": "module",
"module": "./dist/index.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./types/index.d.ts"
}
},
"files": [
"src",
"dist",
"types",
"!src/__test__",
"!types/__test__"
],
"repository": {
"type": "git",
"url": "https://github.com/penpenpng/vitest-nostr.git"
},
"scripts": {
"build": "tsc && vite build",
"lint": "eslint src/**/*.ts && prettier --check src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts && prettier --write src/**/*.ts",
"test": "vitest --run",
"test:update": "vitest --run --update",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nostr-typedef": "^0.1.2",
"prettier": "^2.8.7",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.32.0",
"vitest-websocket-mock": "^0.2.1",
"websocket-polyfill": "^0.0.3"
},
"peerDependencies": {
"vitest": "^0.32.0",
"vitest-websocket-mock": "^0.2.1"
}
}