-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "paykitjs-root",
"version": "0.1.0-alpha.1",
"private": true,
"description": "The billing framework for TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/getpaykit/paykit"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:demo": "pnpm --filter demo dev",
"dev:web": "pnpm --filter web dev",
"test:unit": "node ./node_modules/vitest/vitest.mjs run --config vitest.unit.config.ts",
"typecheck": "turbo run typecheck",
"format": "oxfmt --write '**/*.{ts,tsx,js,jsx}'",
"format:check": "oxfmt --check '**/*.{ts,tsx,js,jsx}'",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"changeset": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:release": "turbo build --filter=./packages/* && node scripts/publish-dist.mjs",
"prepare": "lefthook install --reset-hooks-path",
"worktree:setup": "bash scripts/worktree-setup.sh"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/node": "catalog:",
"lefthook": "^2.1.4",
"lint-staged": "^16.2.7",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tinyglobby": "^0.2.16",
"turbo": "^2.8.10",
"typescript": "catalog:",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.1"
}