generated from jasonsturges/typescript-npm-package
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.86 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
{
"name": "example",
"type": "module",
"scripts": {
"preinstall": "cd ../ && yarn install && yarn build",
"build": "tsc",
"build:client": "cd .. && yarn build",
"_print_starting_label": "echo '' && echo '========== Starting ==========' && echo ''",
"run:example": "yarn build:client && yarn _print_starting_label && node --loader ts-node/esm --no-warnings=ExperimentalWarning",
"admin-webhooks": "yarn run:example admin-webhooks.ts",
"admin-add-user": "yarn run:example admin-add-user.ts",
"admin-remove-user": "yarn run:example admin-remove-user.ts",
"admin-get-handled-paymail-domains": "yarn run:example admin-get-handled-paymail-domains.ts",
"manage-contacts": "yarn run:example manage-contacts.ts",
"access-key": "yarn run:example access-key.ts",
"get-balance": "yarn run:example get-balance.ts",
"user-get-handled-paymail-domains": "yarn run:example user-get-handled-paymail-domains.ts",
"sync-merkleroots": "yarn run:example sync-merkleroots.ts",
"update-user-xpub-metadata": "yarn run:example update-user-xpub-metadata.ts",
"get-shared-config": "yarn run:example get-shared-config.ts",
"list-transactions": "yarn run:example list-transactions.ts",
"create-transaction": "yarn run:example create-transaction.ts",
"send-op-return": "yarn run:example send-op-return.ts",
"xpriv-from-mnemonic": "yarn run:example xpriv-from-mnemonic.ts",
"xpub-from-xpriv": "yarn run:example xpub-from-xpriv.ts",
"generate-keys": "yarn run:example generate-keys.ts",
"handle-exceptions": "yarn run:example handle-exceptions.ts",
"custom-logger": "yarn run:example custom-logger.ts",
"webhook": "yarn run:example webhook.ts"
},
"version": "0.0.0",
"devDependencies": {
"@types/express": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"fastify": "^5.2.1"
}
}