35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
{
|
|
"tasks": {
|
|
"publish": "deno run --env-file=../.env.local --allow-env --allow-read --allow-write=./logs --allow-net --allow-run=git src/cli.ts publish",
|
|
"check": "deno run --env-file=../.env.local --allow-env --allow-read --allow-net src/cli.ts check",
|
|
"validate-post": "deno run --allow-read src/cli.ts validate-post",
|
|
"test": "deno test --allow-env --allow-read --allow-net --allow-run",
|
|
"fmt": "deno fmt",
|
|
"lint": "deno lint"
|
|
},
|
|
"imports": {
|
|
"@std/yaml": "jsr:@std/yaml@^1.0.5",
|
|
"@std/cli": "jsr:@std/cli@^1.0.6",
|
|
"@std/fs": "jsr:@std/fs@^1.0.4",
|
|
"@std/path": "jsr:@std/path@^1.0.6",
|
|
"@std/testing": "jsr:@std/testing@^1.0.3",
|
|
"@std/assert": "jsr:@std/assert@^1.0.6",
|
|
"@std/encoding": "jsr:@std/encoding@^1.0.5",
|
|
"nostr-tools": "npm:nostr-tools@^2.10.4",
|
|
"applesauce-signers": "npm:applesauce-signers@^2.0.0",
|
|
"applesauce-relay": "npm:applesauce-relay@^2.0.0",
|
|
"rxjs": "npm:rxjs@^7.8.1"
|
|
},
|
|
"fmt": {
|
|
"lineWidth": 100,
|
|
"indentWidth": 2,
|
|
"semiColons": false,
|
|
"singleQuote": true
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": ["recommended"]
|
|
}
|
|
}
|
|
}
|