-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.43 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@flipflag/persist",
"version": "1.1.0",
"type": "module",
"types": "dist/index.d.ts",
"description": "Persistence plugin for FlipFlag SDK - offline resilience with pluggable storage adapters",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"FlipFlag",
"Feature Flags",
"Persistence",
"Offline",
"localStorage",
"sessionStorage",
"Cookie",
"Cache"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js",
"typecheck": "tsc --noEmit",
"prettier:formatting": "npx prettier --write ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flipflag-dev/persistence-plugin.git"
},
"author": "Polevov Evgenii <epolevov@emd.one>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flipflag-dev/persistence-plugin/issues"
},
"release": {
"branches": [
"main"
],
"repositoryUrl": "https://github.com/flipflag-dev/persistence-plugin.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/flipflag-dev/persistence-plugin.git#readme",
"devDependencies": {
"@eslint/js": "^9.39.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^25.0.1",
"eslint": "^9.39.0",
"globals": "^17.0.0",
"jest": "^30.2.0",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-esbuild": "^6.2.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.0",
"typescript-eslint": "^8.53.0"
},
"peerDependencies": {
"@flipflag/sdk": ">=1.2.0"
}
}