generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "nostr-action",
"version": "1.0.0",
"description": "nostr GitHub Action",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt && npm run fix-ncc-out",
"fix-ncc-out": "sed -i 's/\\x0D$//' ./dist/*.js",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test",
"nostr-tools-to-commonjs": "babel node_modules/nostr-tools/ --out-dir nostr-tools-commonjs",
"example": "INPUT_DRY=true INPUT_RELAY=wss://nostr-pub.wellorder.net INPUT_CONTENT=example INPUT_KEY=3ddd5602285899a946114506157c7997e5444528f3003f6134712147db19b678 node ./index.js",
"generate-key": "node ./generate_key.js"
},
"repository": {
"type": "git",
"url": "https://github.com/theborakompanioni/nostr-action.git"
},
"keywords": [
"GitHub",
"Actions",
"nostr"
],
"author": "tbk",
"license": "MIT",
"bugs": {
"url": "https://github.com/theborakompanioni/nostr-action/issues"
},
"homepage": "https://github.com/theborakompanioni/nostr-action#readme",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@vercel/ncc": "^0.36.0",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"nostr-tools": "^0.24.1"
}
}