-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
{
"name": "@laserware/stasis",
"version": "4.1.1",
"description": "State management using Redux libraries.",
"author": "Mike Rourke <mike.w.rourke@gmail.com>",
"license": "MIT",
"repository": {
"url": "git+https://github.com/laserware/stasis.git",
"type": "git"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"redux",
"redux-saga",
"sagas",
"state-management"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsup && cd dist && npx prettier --write .",
"prepublishOnly": "npm run build",
"preversion": "npm run eslint && npm run typecheck",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags",
"eslint": "eslint --cache src tsup.config.ts",
"prettier": "prettier --cache --write src",
"prettier:ci": "prettier --check src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"redux-saga": "^1.3.0"
},
"devDependencies": {
"@laserware/eslint-config": "^5.3.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"prettier": {
"trailingComma": "all"
}
}