-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.86 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
69
70
71
72
73
74
{
"name": "launchdarkly-vue-client-sdk",
"version": "2.5.1",
"description": "LaunchDarkly Client-side SDK for VueJS",
"main": "./dist/launchdarkly-vue-client-sdk.umd.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"src",
"!**/*.test.*"
],
"engines": {
"npm": ">=8.11.0",
"node": ">=16.15.1"
},
"type": "module",
"module": "./dist/launchdarkly-vue-client-sdk.es.js",
"exports": {
"types": "./dist/src/index.d.ts",
"require": "./dist/launchdarkly-vue-client-sdk.umd.js",
"import": "./dist/launchdarkly-vue-client-sdk.es.js"
},
"scripts": {
"test": "jest",
"build": "vue-tsc --noEmit && vite build",
"clean": "npx rimraf dist",
"start": "vite",
"lint": "npx eslint src",
"check-typescript": "vue-tsc --noEmit",
"prepublishOnly": "npm run build",
"link-dev": "./link-dev.sh",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/launchdarkly/vue-client-sdk.git"
},
"author": "LaunchDarkly <team@launchdarkly.com>",
"license": "Apache-2.0",
"keywords": [
"launchdarkly",
"launch",
"darkly",
"vue",
"vuejs",
"sdk",
"bindings"
],
"bugs": {
"url": "https://github.com/launchdarkly/vue-client-sdk/issues"
},
"homepage": "https://github.com/launchdarkly/vue-client-sdk#readme",
"dependencies": {
"launchdarkly-js-client-sdk": "3.9.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-vue": "^5.1.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.0-beta.2",
"vue": "^3.2.36",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"vue": "^3.2.36"
}
}