@askviraj/linter 1.1.4 → 1.1.5
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/node_modules/@astrojs/compiler-binding-darwin-arm64/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-darwin-arm64/astro.darwin-arm64.node +0 -0
- package/node_modules/@astrojs/compiler-binding-darwin-arm64/package.json +37 -0
- package/node_modules/@astrojs/compiler-binding-darwin-x64/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-darwin-x64/astro.darwin-x64.node +0 -0
- package/node_modules/@astrojs/compiler-binding-darwin-x64/package.json +37 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-gnu/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-gnu/astro.linux-arm64-gnu.node +0 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-gnu/package.json +40 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-musl/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-musl/astro.linux-arm64-musl.node +0 -0
- package/node_modules/@astrojs/compiler-binding-linux-arm64-musl/package.json +40 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-musl/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-musl/astro.linux-x64-musl.node +0 -0
- package/node_modules/@astrojs/compiler-binding-linux-x64-musl/package.json +40 -0
- package/node_modules/@astrojs/compiler-binding-win32-arm64-msvc/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-win32-arm64-msvc/astro.win32-arm64-msvc.node +0 -0
- package/node_modules/@astrojs/compiler-binding-win32-arm64-msvc/package.json +37 -0
- package/node_modules/@astrojs/compiler-binding-win32-x64-msvc/README.md +3 -0
- package/node_modules/@astrojs/compiler-binding-win32-x64-msvc/astro.win32-x64-msvc.node +0 -0
- package/node_modules/@astrojs/compiler-binding-win32-x64-msvc/package.json +37 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-darwin-arm64",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"arm64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.darwin-arm64.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.darwin-arm64.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"darwin"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-darwin-x64",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"x64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.darwin-x64.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.darwin-x64.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"darwin"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-linux-arm64-gnu",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"arm64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.linux-arm64-gnu.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.linux-arm64-gnu.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"linux"
|
|
36
|
+
],
|
|
37
|
+
"libc": [
|
|
38
|
+
"glibc"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-linux-arm64-musl",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"arm64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.linux-arm64-musl.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.linux-arm64-musl.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"linux"
|
|
36
|
+
],
|
|
37
|
+
"libc": [
|
|
38
|
+
"musl"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-linux-x64-musl",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"x64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.linux-x64-musl.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.linux-x64-musl.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"linux"
|
|
36
|
+
],
|
|
37
|
+
"libc": [
|
|
38
|
+
"musl"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-win32-arm64-msvc",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"arm64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.win32-arm64-msvc.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.win32-arm64-msvc.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"win32"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astrojs/compiler-binding-win32-x64-msvc",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"x64"
|
|
6
|
+
],
|
|
7
|
+
"main": "astro.win32-x64-msvc.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"astro.win32-x64-msvc.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "Astro Compiler",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"compiler",
|
|
15
|
+
"javascript",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
"author": "Astro contributors",
|
|
19
|
+
"homepage": "https://astro.build",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/withastro/compiler-rs.git",
|
|
27
|
+
"directory": "crates/astro_napi"
|
|
28
|
+
},
|
|
29
|
+
"bugs": "https://github.com/withastro/compiler/issues",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"os": [
|
|
35
|
+
"win32"
|
|
36
|
+
]
|
|
37
|
+
}
|