forked from flipt-io/flipt-client-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "@flipt-io/flipt-client-browser",
"version": "0.3.1",
"description": "Flipt Client Evaluation Browser SDK",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Flipt Devs <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/flipt-io/flipt-client-sdks/tree/main/flipt-client-react"
},
"keywords": [
"flipt",
"feature flags",
"feature toggles",
"wasm"
],
"scripts": {
"fmt": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "prettier --check src/**/*.ts",
"test": "NODE_OPTIONS=--no-experimental-fetch jest",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-wasm": "^6.2.2",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rollup": "^4.14.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"undici": "^6.13.0"
}
}