-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.18 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.18 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
{
"name": "@pgflow/source",
"version": "0.0.0",
"license": "Apache-2.0",
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "nx run-many --target=build --all",
"version": "pnpm changeset version && ./scripts/update-jsr-json-version.sh",
"validate:publish:npm": "pnpm nx run-many -t build --exclude=demo,website,example-flows && git status && pnpm publish --dry-run --provenance --recursive --filter=!./pkgs/edge-worker",
"validate:publish:jsr": "cd ./pkgs/edge-worker && jsr publish --dry-run --allow-slow-types",
"validate:publish": "pnpm run validate:publish:npm && pnpm run validate:publish:jsr",
"publish:npm": "pnpm nx run-many -t build --exclude=demo,website,example-flows && pnpm publish --provenance --recursive --filter=!./pkgs/edge-worker",
"publish:jsr": "cd ./pkgs/edge-worker && jsr publish --allow-slow-types",
"changeset:tag": "pnpm changeset tag && git push --follow-tags",
"release": "git status && pnpm run validate:publish && pnpm run publish:npm && pnpm run publish:jsr && pnpm run changeset:tag"
},
"private": true,
"devDependencies": {
"@axhxrx/nx-deno": "^1.0.2",
"supabase": "^2.62.10",
"@changesets/cli": "^2.28.1",
"@decimalturn/toml-patch": "0.3.7",
"@eslint/js": "^9.8.0",
"@netlify/plugin-nextjs": "^5.11.4",
"@nx/esbuild": "21.2.1",
"@nx/eslint": "21.2.1",
"@nx/eslint-plugin": "21.2.1",
"@nx/js": "21.2.1",
"@nx/next": "21.2.1",
"@nx/node": "21.2.1",
"@nx/plugin": "21.2.1",
"@nx/vite": "21.2.1",
"@nx/web": "21.2.1",
"@types/node": "~18.16.9",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"@withgraphite/graphite-cli": "^1.6.8",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.1.5",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.4.1",
"jsr": "^0.13.4",
"netlify-cli": "^22.1.3",
"nx": "21.2.1",
"prettier": "^2.6.2",
"tslib": "^2.3.0",
"typescript": "5.8.3",
"typescript-eslint": "8.34.1",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^1.3.1"
},
"dependencies": {
"@nx/devkit": "21.2.1"
}
}