init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

70
node_modules/fp-ts-local-storage/package.json generated vendored Normal file
View File

@@ -0,0 +1,70 @@
{
"name": "fp-ts-local-storage",
"version": "1.0.3",
"description": "fp-ts bindings for LocalStorage",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"check": "tsc -p .",
"lint": "tslint -p .",
"jest": "jest --ci --coverage",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"",
"pretest": "npm run check && npm run lint && npm run prettier",
"test": "npm run jest",
"posttest": "npm run docs",
"clean": "rm -rf ./lib ./es6",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
"prepublish": "npm run build",
"docs": "docs-ts",
"postbuild": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts-local-storage.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts-local-storage/issues"
},
"homepage": "https://github.com/gcanti/fp-ts-local-storage",
"peerDependencies": {
"fp-ts": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/node": "8.0.19",
"docs-ts": "^0.3.4",
"dtslint": "^0.3.0",
"fp-ts": "^2.0.1",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.2",
"ts-node": "3.3.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^3.5.3"
},
"tags": [
"fp-ts",
"localstorage",
"functional-programming",
"typescript"
],
"keywords": [
"fp-ts",
"localstorage",
"functional-programming",
"typescript"
]
}