-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.21 KB
/
package.json
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
{
"name": "cached-fx",
"version": "0.1.0",
"description": "Wrapper over createEffect factory with cache",
"main": "./dist/cached-fx.cjs.js",
"module": "./dist/index.js",
"jsnext:main": "./dist/index.js",
"umd:main": "./dist/cached-fx.umd.js",
"browser": "./dist/index.js",
"scripts": {
"emit-dts": "dts-bundle-generator --project tsconfig.json --out-file ./dist/index.d.ts ./src/index.ts",
"build:bundles": "rollup -c rollup.config.js",
"build": "pnpm emit-dts && pnpm build:bundles",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"./**/*.{js,ts}\"",
"lint:fix": "eslint \"./**/*.{js,ts}\" --fix",
"test": "jest",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kotoyama/cached-fx.git"
},
"keywords": [
"effector"
],
"author": "kotoyama <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kotoyama/cached-fx/issues"
},
"homepage": "https://github.com/kotoyama/cached-fx#readme",
"peerDependencies": {
"effector": "^22.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^27.5.1",
"dts-bundle-generator": "^6.5.0",
"effector": "^22.2.0",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"nano-staged": "^0.6.0",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"rollup-plugin-terser": "^7.0.2",
"simple-git-hooks": "^2.7.0",
"size-limit": "^7.0.8",
"typescript": "^4.5.2"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"simple-git-hooks": {
"pre-commit": "yarn nano-staged"
},
"nano-staged": {
"*.{js,ts,md}": "prettier --write"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "600 B"
}
]
}