-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.81 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.81 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@unleash/toolbar",
"version": "1.0.0",
"description": "Client-side override toolbar for Unleash JavaScript SDKs",
"type": "module",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react.es.js",
"types": "./dist/react/index.d.ts"
},
"./next": {
"import": "./dist/next.es.js",
"types": "./dist/next/index.d.ts"
},
"./next/server": {
"import": "./dist/next-server.es.js",
"types": "./dist/next/server.d.ts"
},
"./toolbar.css": "./dist/toolbar.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"serve:example:vanilla": "npx serve -p 3000 .",
"serve:example:react": "cd examples/react && npm run dev",
"serve:example:nextjs": "cd examples/nextjs && npm run dev",
"serve:example:angular": "cd examples/angular && npm start",
"serve:example:vue": "cd examples/vue && npm run dev"
},
"keywords": [
"unleash",
"feature-flags",
"feature-toggles",
"debugging",
"toolbar",
"override",
"react",
"nextjs",
"ssr",
"development-tools"
],
"author": "Unleash",
"bugs": {
"url": "https://github.com/Unleash/toolbar/issues"
},
"homepage": "https://github.com/Unleash/toolbar",
"license": "Apache-2.0",
"peerDependencies": {
"unleash-proxy-client": "^3.0.0"
},
"peerDependenciesMeta": {
"@unleash/proxy-client-react": {
"optional": true
},
"@unleash/nextjs": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/eslint": "^9.6.1",
"@types/node": "^20.10.5",
"@types/react": "^18.3.1 || ^19.2.3",
"@types/react-dom": "^18.3.1 || ^19.2.3",
"@unleash/nextjs": "^1.6.4",
"@unleash/proxy-client-react": "^5.0.1",
"@vitest/coverage-v8": "^4.0.15",
"cssnano": "^7.1.2",
"eslint": "^9.39.2",
"jsdom": "^27.3.0",
"postcss": "^8.5.6",
"react": "^18.3.1 || ^19.2.3",
"react-dom": "^18.3.1 || ^19.2.3",
"terser": "^5.44.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.49.0",
"unleash-client": "^6.9.3",
"unleash-proxy-client": "^3.4.1",
"vite": "^7.2.7",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.15"
},
"dependencies": {
"lit": "^3.3.1"
}
}