-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 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": "experience-sdk",
"version": "0.1.0",
"private": true,
"description": "A lightweight, explainable client-side experience runtime built on @lytics/sdk-kit",
"repository": {
"type": "git",
"url": "https://github.com/prosdevlab/experience-sdk.git"
},
"author": "prosdevlab",
"license": "MIT",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"build": "turbo build --filter=!docs",
"build:sdk": "pnpm --filter @prosdevlab/experience-sdk-plugins build && pnpm --filter @prosdevlab/experience-sdk build",
"build:docs": "pnpm build:sdk && pnpm --filter docs build",
"dev": "turbo dev --filter=!docs",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "vitest --config vitest.browser.config.ts",
"test:browser:ui": "vitest --config vitest.browser.config.ts --ui",
"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",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm build:docs",
"docs:start": "pnpm --filter docs start",
"docs:export": "pnpm build:docs && pnpm --filter docs export"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@tsconfig/node-lts": "^24.0.0",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"tsup": "^8.5.1",
"turbo": "^2.7.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.26.2",
"engines": {
"node": ">=22"
},
"volta": {
"node": "24.12.0",
"pnpm": "10.26.2"
},
"dependencies": {
"@lytics/sdk-kit-plugins": "0.1.2"
}
}