-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "@coool/cachestate",
"version": "1.5.0",
"scripts": {
"build": "npm run clean && npm run build:compile && npm run build:copyFiles",
"clean": "rm -rf dist",
"build:copyFiles": "cp ./{LICENSE,README.md,package.json,package-lock.json} ./dist/",
"build:compile": "npx tsc",
"watch": "npx tsc -w",
"release": "cd ./dist && npm publish --access=public && cd .."
},
"dependencies": {
"rxjs": "^7.8.1"
},
"description": "A simple-to-use, minimal boilerplate flexible cached state.",
"devDependencies": {
"prettier": "^3.1.1",
"prettier-plugin-multiline-arrays": "^3.0.1",
"type-fest": "^4.9.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hacklone/coool-cachestate.git"
},
"keywords": [
"typescript",
"cache",
"state",
"storage",
"state management",
"decorator"
],
"author": "Hacklone <[email protected]>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Hacklone/coool-cachestate/raw/main/LICENSE"
}
],
"bugs": {
"url": "https://github.com/Hacklone/coool-cachestate/issues"
},
"homepage": "https://github.com/Hacklone/coool-cachestate"
}