@elmeragroup/internal 0.1.1-canary.1
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/LICENSE +21 -0
- package/NOTICE +62 -0
- package/README.md +56 -0
- package/dist/api-artifacts/model.d.mts +3 -0
- package/dist/api-artifacts/model.mjs +2 -0
- package/dist/api-extractor.d.mts +3 -0
- package/dist/api-extractor.mjs +3 -0
- package/dist/dist-CcEC-Qb_.mjs +558 -0
- package/dist/dist-_NayZK35.mjs +7760 -0
- package/dist/errors-ByXSCE94.mjs +29 -0
- package/dist/index-C9vKRif1.d.mts +815 -0
- package/dist/index.d.mts +53 -0
- package/dist/index.mjs +15 -0
- package/dist/model-1dzGdHi8.d.mts +35 -0
- package/dist/oxlint/anti-slop.d.mts +6 -0
- package/dist/oxlint/anti-slop.mjs +1588 -0
- package/dist/oxlint.d.mts +6 -0
- package/dist/oxlint.mjs +2029 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elmeragroup/internal",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"effect": "4.0.0-rc.111",
|
|
7
|
+
"typescript": "7.0.2",
|
|
8
|
+
"@oxlint/plugins": "1.78.0"
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@types/node": "25.9.5",
|
|
12
|
+
"vitest": "4.1.10",
|
|
13
|
+
"tsdown": "0.23.0",
|
|
14
|
+
"@elmeragroup/typescript-config": "0.0.0",
|
|
15
|
+
"@elmeragroup/api-artifacts": "0.0.0",
|
|
16
|
+
"@elmeragroup/api-extractor": "0.0.0",
|
|
17
|
+
"@elmeragroup/oxlint-plugin-anti-slop": "0.0.0",
|
|
18
|
+
"@elmeragroup/oxlint-plugin": "0.0.0"
|
|
19
|
+
},
|
|
20
|
+
"version": "0.1.1-canary.1",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs"
|
|
25
|
+
},
|
|
26
|
+
"./api-artifacts": {
|
|
27
|
+
"types": "./dist/index.d.mts",
|
|
28
|
+
"import": "./dist/index.mjs"
|
|
29
|
+
},
|
|
30
|
+
"./api-artifacts/model": {
|
|
31
|
+
"types": "./dist/api-artifacts/model.d.mts",
|
|
32
|
+
"import": "./dist/api-artifacts/model.mjs"
|
|
33
|
+
},
|
|
34
|
+
"./api-extractor": {
|
|
35
|
+
"types": "./dist/api-extractor.d.mts",
|
|
36
|
+
"import": "./dist/api-extractor.mjs"
|
|
37
|
+
},
|
|
38
|
+
"./oxlint": {
|
|
39
|
+
"types": "./dist/oxlint.d.mts",
|
|
40
|
+
"import": "./dist/oxlint.mjs"
|
|
41
|
+
},
|
|
42
|
+
"./oxlint/anti-slop": {
|
|
43
|
+
"types": "./dist/oxlint/anti-slop.d.mts",
|
|
44
|
+
"import": "./dist/oxlint/anti-slop.mjs"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"types": "./dist/index.d.mts",
|
|
48
|
+
"files": [
|
|
49
|
+
"dist/**",
|
|
50
|
+
"README.md",
|
|
51
|
+
"LICENSE",
|
|
52
|
+
"NOTICE"
|
|
53
|
+
],
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=24.13.0 <25"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public",
|
|
59
|
+
"tag": "canary"
|
|
60
|
+
},
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/elmeragroup/internal.git",
|
|
64
|
+
"directory": "packages/internal"
|
|
65
|
+
},
|
|
66
|
+
"sideEffects": false,
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsdown",
|
|
69
|
+
"type-check": "tsc --noEmit",
|
|
70
|
+
"test": "vitest run"
|
|
71
|
+
}
|
|
72
|
+
}
|