-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 828 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 828 Bytes
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
{
"name": "@launchdarkly/browser-example-fdv2",
"version": "0.0.0",
"private": true,
"description": "LaunchDarkly example for JavaScript Browser SDK",
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/browser/example-fdv2",
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/js-core.git"
},
"license": "Apache-2.0",
"packageManager": "yarn@3.4.1",
"type": "module",
"scripts": {
"start": "open index.html",
"clean": "rm -rf dist dist-static",
"build": "npm run clean && tsdown",
"test": "playwright test"
},
"dependencies": {
"@launchdarkly/js-client-sdk": "workspace:^"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"playwright": "^1.49.1",
"tsdown": "^0.17.0-beta.4",
"typescript": "^5.9.3"
}
}