-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@convex-dev/workpool",
"description": "A Convex component for managing async work.",
"repository": "github:get-convex/workpool",
"homepage": "https://github.com/get-convex/workpool#readme",
"bugs": {
"email": "support@convex.dev",
"url": "https://github.com/get-convex/workpool/issues"
},
"version": "0.4.9",
"license": "Apache-2.0",
"keywords": [
"convex",
"queue",
"pool",
"component",
"async",
"work"
],
"type": "module",
"scripts": {
"dev": "convex dev --start 'npm run dev:build'",
"dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' -i '**/*.test.ts' -c 'npm run build:codegen' --initial",
"predev": "convex init && npm run build:codegen",
"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",
"dev:dashboard": "cd example && vite --clearScreen false",
"build:dashboard": "cd example && vite build",
"capture:scheduled": "node scripts/capture-scheduled-functions.mjs",
"deploy:dashboard": "npm run build:dashboard && npx @convex-dev/static-hosting upload --dist ./example/dist",
"deploy:dashboard:prod": "npm run build:dashboard && npx @convex-dev/static-hosting upload --dist ./example/dist --prod",
"typecheck": "tsc --noEmit && tsc -p example && tsc -p example/convex",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"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 && npm run test && npm run lint && npm run typecheck",
"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": "(npm whoami || npm login) && 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.36.1",
"convex-helpers": "^0.1.94"
},
"devDependencies": {
"@convex-dev/eslint-plugin": "^2.0.0",
"@convex-dev/static-hosting": "^0.2.0",
"@convex-dev/workpool-old": "npm:@convex-dev/workpool@0.4.7",
"@edge-runtime/vm": "5.0.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "10.0.1",
"@types/node": "24.10.11",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.3",
"@vitest/coverage-v8": "4.1.8",
"chokidar-cli": "3.0.0",
"convex": "1.41.0",
"convex-helpers": "0.1.111",
"convex-test": "0.0.53",
"eslint": "10.0.2",
"eslint-plugin-react-hooks": "7.1.0-canary-3f0b9e61-20260317",
"eslint-plugin-react-refresh": "0.5.0",
"globals": "17.3.0",
"pkg-pr-new": "0.0.63",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.5",
"vitest": "4.1.8"
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js",
"dependencies": {
"@convex-dev/batch-worker": "^0.2.0"
}
}