-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.07 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.07 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@erquhart/convex-oss-stats",
"description": "A Convex Component for syncing and rendering open source project data.",
"repository": "github:erquhart/convex-oss-stats",
"homepage": "https://github.com/erquhart/convex-oss-stats#readme",
"bugs": {
"email": "shawn@erquh.art",
"url": "https://github.com/erquhart/convex-oss-stats/issues"
},
"version": "0.8.2",
"license": "Apache-2.0",
"keywords": [
"convex",
"component"
],
"type": "module",
"scripts": {
"dev": "run-p -r 'dev:*'",
"dev:backend": "convex dev --typecheck-components",
"dev:frontend": "cd example && vite --clearScreen false",
"dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' -i '**/*.test.ts' -c 'npx convex codegen --component-dir ./src/component && npm run build' --initial",
"predev": "convex dev --skip-push",
"clean": "rm -rf dist *.tsbuildinfo",
"build": "tsc --project ./tsconfig.build.json",
"typecheck": "tsc --noEmit && tsc -p example && 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",
"prepublishOnly": "npm run clean && npm run build",
"preversion": "npm run clean && npm ci && npm run build && run-p test lint 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": "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"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/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.29.0",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.0",
"@convex-dev/crons": "^0.2.0",
"@convex-dev/eslint-plugin": "^1.0.0",
"@edge-runtime/vm": "^5.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "9.39.1",
"@tanstack/react-table": "^8.21.3",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"chokidar-cli": "3.0.0",
"convex": "1.29.3",
"convex-helpers": "^0.1.104",
"convex-test": "0.0.40",
"cpy-cli": "^6.0.0",
"eslint": "9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"lucide-react": "^0.548.0",
"npm-run-all2": "8.0.4",
"path-exists-cli": "2.0.0",
"pkg-pr-new": "^0.0.60",
"postcss": "^8.5.6",
"prettier": "3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"remeda": "^2.32.0",
"typescript": "5.9.3",
"typescript-eslint": "8.47.0",
"vite": "6.4.1",
"vitest": "3.2.4",
"wrangler": "^4.45.2"
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js",
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@octokit/graphql-schema": "^15.25.0",
"cheerio": "^1.0.0",
"convex-helpers": "^0.1.67",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.17",
"nano": "^10.1.4",
"npm-api": "^1.0.1",
"octokit": "^4.0.2",
"p-limit": "^6.1.0",
"remeda": "^2.17.3"
}
}