-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.06 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.06 KB
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
{
"name": "@convex-dev/action-retrier",
"version": "0.3.0",
"description": "Convex component for retrying idempotent actions.",
"keywords": [
"convex",
"retry",
"idempotency"
],
"homepage": "https://github.com/get-convex/action-retrier",
"repository": "github:get-convex/action-retrier",
"bugs": "https://github.com/get-convex/action-retrier/issues",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "run-p -r 'dev:*'",
"dev:backend": "convex dev --typecheck-components",
"dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' -i '**/*.test.ts' -c 'npm run build:codegen' --initial",
"predev": "path-exists .env.local dist || (npm run build && convex dev --once)",
"build": "tsc --project ./tsconfig.build.json",
"build:codegen": "npx convex codegen --component-dir ./src/component && npm run build",
"build:clean": "rm -rf dist *.tsbuildinfo && npm run build:codegen",
"typecheck": "tsc --noEmit && tsc -p example/convex",
"lint": "eslint .",
"all": "run-p -r 'dev:*' 'test:watch'",
"test": "vitest run --typecheck",
"test:watch": "vitest --typecheck --clearScreen false",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"preversion": "npm ci && npm run build:clean && run-p test lint typecheck",
"prepublishOnly": "npm whoami || npm login",
"alpha": "npm version prerelease --preid alpha && npm publish --tag alpha && git push --follow-tags",
"release": "npm version patch && npm publish && git push --follow-tags",
"version": "vim -c 'normal o' -c 'normal o## '$npm_package_version CHANGELOG.md && prettier -w CHANGELOG.md && git add CHANGELOG.md"
},
"files": [
"dist",
"src"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./test": "./src/test.ts",
"./_generated/component.js": {
"types": "./dist/component/_generated/component.d.ts"
},
"./convex.config": {
"types": "./dist/component/convex.config.d.ts",
"default": "./dist/component/convex.config.js"
},
"./convex.config.js": {
"types": "./dist/component/convex.config.d.ts",
"default": "./dist/component/convex.config.js"
}
},
"peerDependencies": {
"convex": "^1.24.8"
},
"devDependencies": {
"@edge-runtime/vm": "5.0.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@types/node": "20.19.39",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"chokidar-cli": "3.0.0",
"convex": "1.34.1",
"convex-test": "0.0.47",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.4.0",
"npm-run-all2": "8.0.4",
"path-exists-cli": "2.0.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "4.1.3"
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js"
}