-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.76 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.76 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
{
"name": "@logux/actions",
"version": "0.5.0",
"description": "Types and action creators for build-in Logux actions",
"keywords": [
"logux",
"crdt",
"types"
],
"scripts": {
"test:coverage": "c8 bnt",
"test:lint": "eslint .",
"test:types": "check-dts",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"homepage": "https://logux.org/",
"repository": "logux/actions",
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"peerDependencies": {
"@logux/core": "^0.10.0"
},
"devDependencies": {
"@logux/client": "^0.23.2",
"@logux/core": "^0.10.0",
"@logux/eslint-config": "^57.0.0",
"@size-limit/preset-small-lib": "^12.0.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"actions-up": "^1.12.0",
"better-node-test": "^0.8.3",
"c8": "^11.0.0",
"check-dts": "^0.9.0",
"clean-publish": "^6.0.4",
"eslint": "^10.1.0",
"nanostores": "^1.2.0",
"size-limit": "^12.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"skip-full": true,
"clean": true
},
"size-limit": [
{
"import": "{ defineAction }",
"limit": "51 B"
}
]
}