@fjell/core 4.4.24 → 4.4.26
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 +19 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fjell/core",
|
|
3
3
|
"description": "Core Item and Key Framework for Fjell",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.26",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"core",
|
|
7
7
|
"fjell"
|
|
@@ -16,16 +16,28 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"type": "module",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"lint": "eslint . --ext .ts --fix",
|
|
21
|
+
"dev": "concurrently \"tsc --noEmit --watch\" \"node build.js --watch\"",
|
|
22
|
+
"build": "npm run lint && tsc --noEmit && node build.js",
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"test": "npm run lint && vitest run --coverage",
|
|
25
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
26
|
+
"docs:dev": "cd docs && npm run dev",
|
|
27
|
+
"docs:build": "cd docs && npm run build",
|
|
28
|
+
"docs:preview": "cd docs && npm run preview",
|
|
29
|
+
"docs:test": "cd docs && npm run test"
|
|
30
|
+
},
|
|
19
31
|
"dependencies": {
|
|
20
|
-
"@fjell/docs-template": "1.0.
|
|
21
|
-
"@fjell/logging": "^4.4.
|
|
32
|
+
"@fjell/docs-template": "1.0.25",
|
|
33
|
+
"@fjell/logging": "^4.4.30",
|
|
22
34
|
"deepmerge": "^4.3.1",
|
|
23
35
|
"luxon": "^3.7.1"
|
|
24
36
|
},
|
|
25
37
|
"devDependencies": {
|
|
26
38
|
"@eslint/eslintrc": "^3.3.1",
|
|
27
|
-
"@eslint/js": "^9.
|
|
28
|
-
"@fjell/eslint-config": "^1.1.
|
|
39
|
+
"@eslint/js": "^9.32.0",
|
|
40
|
+
"@fjell/eslint-config": "^1.1.3",
|
|
29
41
|
"@swc/core": "^1.13.2",
|
|
30
42
|
"@tsconfig/recommended": "^1.0.10",
|
|
31
43
|
"@types/luxon": "^3.6.2",
|
|
@@ -34,7 +46,7 @@
|
|
|
34
46
|
"@vitest/coverage-v8": "3.2.4",
|
|
35
47
|
"concurrently": "^9.2.0",
|
|
36
48
|
"esbuild": "^0.25.8",
|
|
37
|
-
"eslint": "^9.
|
|
49
|
+
"eslint": "^9.32.0",
|
|
38
50
|
"rimraf": "^6.0.1",
|
|
39
51
|
"typescript": "^5.8.3",
|
|
40
52
|
"vitest": "3.2.4"
|
|
@@ -42,16 +54,5 @@
|
|
|
42
54
|
"repository": {
|
|
43
55
|
"type": "git",
|
|
44
56
|
"url": "git+https://github.com/getfjell/core.git"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"lint": "eslint . --ext .ts --fix",
|
|
48
|
-
"dev": "concurrently \"tsc --noEmit --watch\" \"node build.js --watch\"",
|
|
49
|
-
"build": "pnpm run lint && tsc --noEmit && node build.js",
|
|
50
|
-
"clean": "rimraf dist",
|
|
51
|
-
"test": "pnpm run lint && vitest run --coverage",
|
|
52
|
-
"docs:dev": "cd docs && npm run dev",
|
|
53
|
-
"docs:build": "cd docs && npm run build",
|
|
54
|
-
"docs:preview": "cd docs && npm run preview",
|
|
55
|
-
"docs:test": "cd docs && npm run test"
|
|
56
57
|
}
|
|
57
|
-
}
|
|
58
|
+
}
|