-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.04 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
{
"name": "@convex-dev/convex-api-js",
"version": "0.2.12",
"description": "JavaScript client library to access Convex Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha",
"clean": "rm -rf ./dist/ ./doc/ ./coverage ./.nyc_output",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts src/",
"lint:fix": "eslint --ignore-path .gitignore --fix --ext .js,.ts src/",
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc",
"build:watch": "tsc -w",
"build:docs": "typedoc --mode modules --out ./docs/ ./src/",
"release": "npm run build && npm run build:docs && npm publish",
"run": "ts-node"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Convex-Dev/convex-api-js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [],
"author": "Dex <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Convex-Dev/convex-api-js/issues"
},
"homepage": "https://github.com/Convex-Dev/convex-api-js#README",
"dependencies": {
"@noble/ed25519": "^1.6.0",
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"js-sha3": "^0.8.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^14.18.17",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"mocha": "^6.2.3",
"prettier": "^2.6.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.14.1",
"typedoc": "^0.17.8",
"typescript": "^3.9.10"
},
"directories": {
"test": "test"
}
}