generated from dev-protocol/template-repos-ts-functions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@devprotocol/khaos-functions",
"version": "0.4.2",
"description": "Run functions from IPFS",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"!**/*.test.*"
],
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/khaos-functions.d.ts",
"scripts": {
"test": "ava",
"build": "yarn build:ts && yarn build:rollup",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"watch": "tsc -w",
"start": "func start",
"pretest": "yarn build:ts",
"prebuild": "rimraf dist",
"prestart": "yarn build",
"snap": "yarn prebuild && yarn build:ts && node ./dist/scripts/callGetAllFunctions.js",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepack": "yarn test && yarn build",
"prepare": "husky install"
},
"dependencies": {
"@azure/functions": "3.5.1",
"@devprotocol/khaos-core": "1.6.0",
"@devprotocol/util-ts": "4.0.0",
"bent": "7.3.12",
"glob": "^10.0.0",
"ramda": "0.30.1",
"type-fest": "4.35.0"
},
"devDependencies": {
"@ava/typescript": "4.1.0",
"@rollup/plugin-multi-entry": "6.0.1",
"@rollup/plugin-typescript": "12.1.2",
"@types/bent": "7.3.8",
"@types/bl": "5.1.4",
"@types/dotenv": "8.2.3",
"@types/fs-extra": "11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "22.13.5",
"@types/ramda": "0.30.2",
"@types/sinon": "17.0.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "5.3.1",
"bl": "6.0.19",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-functional": "4.4.1",
"esm": "3.2.25",
"fs-extra": "11.3.0",
"husky": "8.0.3",
"ipfs-http-client": "49.0.0",
"p-queue": "6.6.2",
"p-retry": "4.6.2",
"prettier": "3.5.2",
"rimraf": "5.0.10",
"rollup": "3.29.5",
"rollup-plugin-dts": "6.1.1",
"sinon": "18.0.1",
"typescript": "5.7.3"
},
"ava": {
"require": [
"esm"
],
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/khaos-functions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-protocol/khaos-functions/issues"
},
"homepage": "https://github.com/dev-protocol/khaos-functions#readme"
}