-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.54 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.54 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
{
"name": "@creem_io/convex",
"description": "Integrates Creem payments, subscriptions, and billing into your Convex application.",
"repository": "github:creem-io/convex-creem",
"homepage": "https://github.com/creem-io/convex-creem#readme",
"bugs": {
"url": "https://github.com/creem-io/convex-creem/issues"
},
"version": "0.1.0",
"license": "MIT",
"keywords": [
"convex",
"component",
"creem",
"payments",
"subscriptions",
"billing",
"checkout",
"merchant-of-record"
],
"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' 'src/**/*.tsx' -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",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest --clearScreen false",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"prepublishOnly": "npm run clean && npm run build",
"release": "npm version patch && npm publish && git push --follow-tags"
},
"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"
},
"./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": {
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^3.2.4",
"chokidar-cli": "^3.0.0",
"convex": "^1.29.0",
"convex-test": "^0.0.41",
"npm-run-all2": "^8.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"convex-helpers": "^0.1.63"
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js"
}