-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "@flagsync/nextjs-sdk",
"version": "0.8.3",
"description": "FlagSync adapter for Vercel's Flags SDK",
"author": "Mike Chabot",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flagsync/nextjs-sdk"
},
"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"
},
"peerDependencies": {
"flags": "^4.0.1"
},
"dependencies": {
"@flagsync/node-sdk": "0.8.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.4.0",
"prettier": "^3.5.3",
"replace-in-file": "^7.2.0",
"semver": "^7.7.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vitest": "^3.0.8"
}
}