-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.07 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.07 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
{
"name": "@interzept/interzept-environment-selector",
"version": "1.1.0",
"description": "Multi-environment data source selector with feature flags and production safety",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": [
"*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./context": {
"types": "./dist/context.d.ts",
"import": "./dist/context.mjs",
"require": "./dist/context.js"
},
"./toggle": {
"types": "./dist/toggle.d.ts",
"import": "./dist/toggle.mjs",
"require": "./dist/toggle.js"
},
"./unstyled": {
"types": "./dist/toggle-unstyled.d.ts",
"import": "./dist/toggle-unstyled.mjs",
"require": "./dist/toggle-unstyled.js"
},
"./styles.css": "./dist/toggle.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish",
"publish:github": "npm publish --registry=https://npm.pkg.github.com",
"publish:all": "npm publish && npm publish --registry=https://npm.pkg.github.com"
},
"keywords": [
"react",
"multi-environment",
"data-source",
"feature-flag",
"development-tools",
"nextjs",
"environment-toggle"
],
"peerDependencies": {
"lucide-react": ">=0.263.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.2.0 || ^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/interzept/interzept-environment-selector.git"
},
"bugs": {
"url": "https://github.com/interzept/interzept-environment-selector/issues"
},
"homepage": "https://interzept.dev",
"license": "MIT",
"author": "Omolade Odetara",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}