-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 920 Bytes
/
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
{
"name": "nostr-typedef",
"version": "0.11.0",
"description": "Type definitions for Nostr applications",
"author": "penpenpng",
"keywords": [
"nostr"
],
"homepage": "https://github.com/penpenpng/nostr-typedef/",
"bugs": {
"url": "https://github.com/penpenpng/nostr-typedef/issues"
},
"license": "MIT",
"main": "./index.d.ts",
"types": "./index.d.ts",
"files": [
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/penpenpng/nostr-typedef.git"
},
"scripts": {
"lint": "eslint index.d.ts && prettier --check index.d.ts",
"lint:fix": "eslint --fix index.d.ts && prettier --write index.d.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"typescript": "^5.0.0"
}
}