-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.17 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
{
"name": "@amadeni/convex-lib",
"version": "0.1.8",
"description": "Convex auth primitives and type validation toolbox",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"prepublishOnly": "pnpm run build",
"lint": "eslint src/",
"ts": "tsc --noEmit --incremental false && tsc -p tsconfig.type-tests.json --noEmit",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"check-spelling": "cspell '**/*.*' --no-progress",
"test": "vitest run",
"ci": "pnpm run prettier:check && pnpm run lint && pnpm run ts && pnpm run check-spelling && pnpm run test",
"release": "pnpm version patch && git push && git push --tags",
"release:minor": "pnpm version minor && git push && git push --tags",
"release:major": "pnpm version major && git push && git push --tags",
"re-release": "git tag -d v$(node -p \"require('./package.json').version\") && git push origin :refs/tags/v$(node -p \"require('./package.json').version\") && git tag v$(node -p \"require('./package.json').version\") && git push --tags"
},
"keywords": [
"convex",
"zod",
"typescript",
"library"
],
"author": "Amadeni <nicolai.hallberg@amadeni.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amadeni/convex-lib.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"convex": ">=1.0.0",
"convex-helpers": ">=0.1.0",
"zod": ">=3.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"convex": "^1.32.0",
"convex-helpers": "^0.1.100",
"cspell": "^9.7.0",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18",
"zod": "^3.25.76"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}