@actdim/utico 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +38 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actdim/utico",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "A modern foundation toolkit for complex TypeScript apps",
|
|
5
5
|
"author": "Pavel Borodaev",
|
|
6
6
|
"license": "Proprietary",
|
|
@@ -48,31 +48,49 @@
|
|
|
48
48
|
"sideEffects": false,
|
|
49
49
|
"sideEffects?": [],
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "tsc && vite build",
|
|
52
51
|
"test": "npx vitest",
|
|
53
52
|
"wtest": "npx vitest --watch",
|
|
54
|
-
"dtest": "node --inspect-brk node_modules/vitest/vitest.mjs run --poolOptions.threads.singleThread",
|
|
55
|
-
"lint": "eslint . --ext ts
|
|
53
|
+
"dtest": "node --inspect-brk node_modules/vitest/vitest.mjs run --poolOptions.threads.singleThread",
|
|
54
|
+
"lint": "eslint . -f visualstudio --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
|
|
55
|
+
"online": "vite --host",
|
|
56
|
+
"build": "tsc -b && vite build",
|
|
57
|
+
"npm:u": "npm update",
|
|
58
|
+
"npm:ou": "npm outdated",
|
|
59
|
+
"ncu": "ncu",
|
|
60
|
+
"ncu:u": "ncu -u",
|
|
61
|
+
"ncu:ud": "ncu -u --dev",
|
|
62
|
+
"nvm:la": "nvm list available",
|
|
63
|
+
"nvm:il": "nvm install lts"
|
|
56
64
|
},
|
|
57
65
|
"peerDependencies": {
|
|
58
|
-
"dexie": "^4.0
|
|
66
|
+
"dexie": "^4.2.0",
|
|
59
67
|
"moment": "^2.30.1",
|
|
60
|
-
"uuid": "^
|
|
68
|
+
"uuid": "^13.0.0"
|
|
61
69
|
},
|
|
62
70
|
"devDependencies": {
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"eslint": "^
|
|
69
|
-
"eslint-
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.45.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.45.0",
|
|
73
|
+
"eslint": "^9.37.0",
|
|
74
|
+
"eslint-config-prettier": "^10.1.8",
|
|
75
|
+
"eslint-formatter-visualstudio": "^8.40.0",
|
|
76
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
77
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
78
|
+
"eslint-plugin-react": "^7.37.5",
|
|
79
|
+
"eslint-plugin-react-hooks": "^6.1.1",
|
|
80
|
+
"eslint-plugin-react-refresh": "^0.4.23",
|
|
81
|
+
"globals": "^16.4.0",
|
|
82
|
+
"prettier": "^3.6.2",
|
|
83
|
+
"prettier-plugin-classnames": "^0.8.4",
|
|
84
|
+
"ts-node": "^10.9.2",
|
|
85
|
+
"typescript-eslint": "^8.45.0",
|
|
86
|
+
"@types/lodash": "^4.17.20",
|
|
87
|
+
"@types/node": "^24.7.0",
|
|
88
|
+
"@types/uuid": "^11.0.0",
|
|
89
|
+
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
90
|
+
"npm-check-updates": "^19.0.0",
|
|
91
|
+
"vite": "^7.1.9",
|
|
92
|
+
"shx": "^0.4.0",
|
|
93
|
+
"typescript": "^5.9.3",
|
|
94
|
+
"@swc/core": "^1.13.5"
|
|
77
95
|
}
|
|
78
96
|
}
|