-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "@prosdevlab/sdk-kit",
"version": "0.1.0",
"description": "A lightweight, extensible TypeScript framework for building JavaScript SDKs with a powerful plugin architecture",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/prosdevlab/sdk-kit.git"
},
"author": "prosdev",
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run packages/",
"test:integration": "vitest run tests/integration/",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:e2e:ui": "vitest --config vitest.config.e2e.ts --browser.headless=false",
"test:coverage": "vitest run --coverage",
"clean": "turbo clean && rm -rf node_modules",
"format": "turbo format",
"typecheck": "turbo typecheck",
"prepare": "husky",
"lint-staged": "biome check --write --no-errors-on-unmatched",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@tsconfig/node-lts": "^24.0.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"playwright": "^1.58.0",
"turbo": "^2.7.6",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22"
}
}