-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "@lytics/lio-client",
"version": "0.1.0",
"description": "TypeScript/JavaScript SDK for Lytics API - Content enrichment for CMS integrations",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lytics/lio-client.git"
},
"author": "Lytics",
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "tsx tests/integration/test-all.ts",
"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.11",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@tsconfig/node-lts": "^24.0.0",
"@vitest/coverage-v8": "^4.0.16",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"tsx": "^4.19.2",
"turbo": "^2.7.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.26.2",
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.17.0",
"pnpm": "10.26.2"
}
}