-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.28 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.28 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
{
"name": "@convex-dev/table-history",
"description": "A table history component for Convex.",
"repository": "github:get-convex/table-history",
"homepage": "https://github.com/get-convex/table-history#readme",
"bugs": {
"email": "support@convex.dev",
"url": "https://github.com/get-convex/table-history/issues"
},
"version": "0.1.3",
"license": "Apache-2.0",
"keywords": [
"convex",
"component"
],
"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 ./esm.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/esm/client/index.d.ts",
"default": "./dist/esm/client/index.js"
},
"./react": {
"types": "./dist/esm/react/index.d.ts",
"default": "./dist/esm/react/index.js"
},
"./_generated/component.js": {
"types": "./dist/esm/component/_generated/component.d.ts",
"default": "./dist/esm/component/_generated/component.js"
},
"./convex.config": {
"types": "./dist/esm/component/convex.config.d.ts",
"default": "./dist/esm/component/convex.config.js"
},
"./convex.config.js": {
"types": "./dist/esm/component/convex.config.d.ts",
"default": "./dist/esm/component/convex.config.js"
}
},
"dependencies": {
"convex-helpers": "^0.1.100"
},
"peerDependencies": {
"convex": ">= 1.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.1",
"@types/node": "20.19.37",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.7.0",
"convex": "1.35.1",
"convex-test": "0.0.33",
"chokidar-cli": "3.0.0",
"eslint": "9.39.1",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "17.4.0",
"prettier": "3.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0",
"vite": "5.4.21",
"vitest": "2.1.9"
},
"types": "./dist/esm/client/index.d.ts",
"module": "./dist/esm/client/index.js"
}