-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.98 KB
/
package.json
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
108
109
110
111
112
{
"name": "azure-feature-flags",
"version": "1.4.0",
"type": "module",
"description": "Fetch and validate feature flags managed via Azure App Configuration.",
"author": {
"name": "Siddhant Gupta",
"url": "https://guptasiddhant.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guptasiddhant/azure-feature-flags.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/guptasiddhant/azure-feature-flags/issues"
},
"files": [
"cjs",
"esm",
"*.js",
"*.d.ts"
],
"keywords": [
"azure",
"feature",
"flag",
"flags",
"configuration",
"config",
"validate",
"parse",
"app",
"rollout",
"percentage"
],
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js",
"module": "./esm/index.js",
"require": "./cjs/index.js"
},
"./allocate": {
"types": "./esm/allocate.d.ts",
"import": "./esm/allocate.js",
"module": "./esm/allocate.js",
"require": "./cjs/allocate.js"
},
"./client": {
"types": "./esm/client.d.ts",
"import": "./esm/client.js",
"module": "./esm/client.js",
"require": "./cjs/client.js"
},
"./rollout": {
"types": "./esm/rollout.d.ts",
"import": "./esm/rollout.js",
"module": "./esm/rollout.js",
"require": "./cjs/rollout.js"
},
"./service": {
"types": "./esm/service.d.ts",
"import": "./esm/service.js",
"module": "./esm/service.js",
"require": "./cjs/service.js"
},
"./validate": {
"types": "./esm/validate.d.ts",
"import": "./esm/validate.js",
"module": "./esm/validate.js",
"require": "./cjs/validate.js"
}
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"scripts": {
"app:build": "vite build",
"app:dev": "vite",
"app:preview": "vite preview",
"build": "yarn build:cjs & yarn build:esm & node ./scripts/gen-js.js",
"build:cjs": "rm -rf cjs; tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf esm; tsc -p tsconfig.esm.json",
"bump": "node ./scripts/bump.mjs",
"clear": "rm -rf *.js *.d.ts cjs esm & true",
"jsr:publish": "npx -y jsr publish",
"prepublishOnly": " yarn clear && yarn test && yarn build",
"test": "vitest run --coverage",
"test:server": "node ./scripts/run.mjs",
"test:watch": "vitest --coverage"
},
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@tailwindcss/vite": "^4.0.0-alpha.15",
"@types/node": "^20.0.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"react": "19.0.0-rc-9d4fba0788-20240530",
"react-dom": "19.0.0-rc-9d4fba0788-20240530",
"tailwindcss": "^4.0.0-alpha.15",
"typescript": "^5.4.0",
"vite": "^5.2.12",
"vitest": "^1.6.0"
}
}