-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.71 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
{
"name": "@convex-dev/aggregate",
"description": "Convex component to calculate counts and sums of values for efficient aggregation.",
"version": "0.2.2",
"keywords": [
"convex",
"component",
"aggregate",
"count",
"sum"
],
"homepage": "https://github.com/get-convex/aggregate",
"repository": "github:get-convex/aggregate",
"bugs": "https://github.com/get-convex/aggregate/issues",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "convex dev --start 'npm run dev:build'",
"dev:frontend": "cd example && vite --clearScreen false",
"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",
"typecheck": "tsc --noEmit && tsc -p example && tsc -p example/convex",
"lint": "eslint .",
"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.24.8"
},
"devDependencies": {
"@convex-dev/eslint-plugin": "2.0.0",
"@convex-dev/migrations": "0.3.5",
"@edge-runtime/vm": "5.0.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@fast-check/vitest": "0.4.1",
"@mantine/core": "9.2.2",
"@mantine/emotion": "9.2.2",
"@mantine/hooks": "9.2.2",
"@mantine/notifications": "9.2.2",
"@tabler/icons-react": "3.44.0",
"@types/node": "24.13.3",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "4.1.7",
"@xyflow/react": "12.10.2",
"chokidar-cli": "3.0.0",
"convex": "1.39.1",
"convex-helpers": "0.1.118",
"convex-test": "0.0.53",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.6.0",
"pkg-pr-new": "0.0.75",
"prettier": "3.8.3",
"rand-seed": "3.0.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"type-route": "1.1.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.16",
"vitest": "4.1.7"
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js"
}