-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "@replanejs/sdk",
"version": "1.0.2",
"description": "Dynamic configuration SDK for browser and server environments (Node.js, Deno, Bun). Powered by Replane.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/replane-dev/replane-javascript#readme",
"bugs": {
"url": "https://github.com/replane-dev/replane-javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replane-dev/replane-javascript.git",
"directory": "packages/sdk"
},
"author": "Dmitry Tilyupo <tilyupo@gmail.com>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"replane",
"config",
"configuration",
"dynamic configuration",
"remote config",
"feature-flags"
],
"sideEffects": false,
"scripts": {
"prebuild": "node ../../scripts/update-version.js .",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.15.17",
"async-channel": "^0.2.0",
"tsdown": "^0.11.9",
"typescript": "^5.8.3",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18.0.0"
}
}