-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"name": "tiny-feature-flags",
"description": "A tiny, deterministic feature flag SDK for edge, browser and serverless environments.",
"version": "1.0.1",
"private": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Samuel Fontebasso",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:umd": "node build.umd.mjs",
"build:watch": "tsc --watch",
"demo": "npx tsx examples/basic-eval.ts",
"dev:test": "vitest",
"docs": "typedoc",
"format": "prettier --write ./src ./tests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fontebasso/tiny-feature-flags.git"
},
"bugs": {
"url": "https://github.com/fontebasso/tiny-feature-flags/issues"
},
"homepage": "https://github.com/fontebasso/tiny-feature-flags#readme",
"unpkg": "dist/tiny-feature-flags.umd.js",
"keywords": [
"feature-flags",
"edge",
"sdk",
"typescript",
"rollout",
"deterministic"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/coverage-v8": "^3.1.2",
"esbuild": "^0.25.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}