-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "nostr-access-control",
"version": "0.1.7",
"description": "This proposal specifies how to implement decentralized access control with Nostr.",
"files": [
"./lib/**/*"
],
"types": "./lib/index.d.ts",
"main": "lib/nostr-ac.cjs.js",
"module": "lib/esm/nostr-ac.mjs",
"exports": {
"import": "./lib/esm/nostr-ac.mjs",
"require": "./lib/nostr-ac.cjs.js",
"types": "./lib/index.d.ts"
},
"license": "Unlicense",
"scripts": {
"build": "node build",
"format": "prettier --plugin-search-dir . --write .",
"test": "jest"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"esbuild": "0.16.9",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.40.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.2.1",
"esm-loader-typescript": "^1.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.0",
"tsd": "^0.22.0",
"typescript": "^5.2.2"
},
"dependencies": {
"nostr-tools": "^1.17.0"
}
}