@meistrari/mise-en-place 2.1.3 → 2.2.0
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 +43 -43
- package/tsconfig.base.json +17 -16
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "@meistrari/mise-en-place",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/meistrari/mise-en-place.git"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "unbuild"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"mise-en-place": "dist/cli.mjs"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
"./eslint": {
|
|
17
|
+
"types": "./dist/eslint.d.ts",
|
|
18
|
+
"import": "./dist/eslint.mjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
".editorconfig",
|
|
23
|
+
"Makefile",
|
|
24
|
+
"dist",
|
|
25
|
+
"scripts",
|
|
26
|
+
"tsconfig.base.json"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [],
|
|
29
|
+
"author": "",
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"type": "module",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/meistrari/mise-en-place/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/meistrari/mise-en-place#readme",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@antfu/eslint-config": "6.2.0",
|
|
38
|
+
"eslint": "9.39.1",
|
|
39
|
+
"eslint-plugin-diff": "2.0.3",
|
|
40
|
+
"eslint-plugin-drizzle": "0.2.3"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "24.10.1",
|
|
44
|
+
"unbuild": "3.6.1"
|
|
19
45
|
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist",
|
|
23
|
-
"Makefile",
|
|
24
|
-
".editorconfig",
|
|
25
|
-
"tsconfig.base.json",
|
|
26
|
-
"scripts"
|
|
27
|
-
],
|
|
28
|
-
"keywords": [],
|
|
29
|
-
"author": "",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"type": "module",
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/meistrari/mise-en-place/issues"
|
|
34
|
-
},
|
|
35
|
-
"homepage": "https://github.com/meistrari/mise-en-place#readme",
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@antfu/eslint-config": "6.2.0",
|
|
38
|
-
"eslint": "9.39.1",
|
|
39
|
-
"eslint-plugin-diff": "2.0.3",
|
|
40
|
-
"eslint-plugin-drizzle": "0.2.3"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/node": "24.10.1",
|
|
44
|
-
"unbuild": "3.6.1"
|
|
45
|
-
}
|
|
46
46
|
}
|
package/tsconfig.base.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
"allowUnreachableCode": false,
|
|
6
|
+
"allowUnusedLabels": false,
|
|
7
|
+
"exactOptionalPropertyTypes": false,
|
|
8
|
+
"noImplicitOverride": true,
|
|
9
|
+
"noImplicitReturns": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": false,
|
|
11
|
+
"noUncheckedIndexedAccess": true,
|
|
12
|
+
"noUnusedLocals": true,
|
|
13
|
+
"noUnusedParameters": true,
|
|
14
|
+
"noFallthroughCasesInSwitch": true,
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
"skipLibCheck": true
|
|
17
|
+
},
|
|
18
|
+
"exclude": [
|
|
19
|
+
"*.stories.ts"
|
|
20
|
+
]
|
|
20
21
|
}
|