-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "@flagsync/node-sdk",
"version": "0.8.3",
"description": "FlagSync SDK for Node.js",
"author": "Mike Chabot",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flagsync/node-client"
},
"homepage": "https://www.flagsync.com",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=18",
"npm": ">=6"
},
"scripts": {
"build": "tsup",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --fix",
"test": "vitest"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"replace-in-file": "^7.2.0",
"semver": "^7.7.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.2.12",
"vitest": "^1.4.0"
},
"dependencies": {
"deepmerge": "^4.3.1",
"eventemitter3": "^5.0.1",
"eventsource": "^4.0.0",
"ws": "^8.18.3"
}
}