@nghyane/arcane-natives 0.1.3 → 0.1.8

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 CHANGED
@@ -1,163 +1,163 @@
1
1
  {
2
- "type": "module",
3
- "name": "@nghyane/arcane-natives",
4
- "version": "0.1.3",
5
- "description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
6
- "homepage": "https://github.com/nghyane/arcane",
7
- "author": "Can Bölük",
8
- "license": "GPL-3.0-or-later",
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/nghyane/arcane.git",
15
- "directory": "packages/natives"
16
- },
17
- "bugs": {
18
- "url": "https://github.com/nghyane/arcane/issues"
19
- },
20
- "keywords": [
21
- "napi",
22
- "rust",
23
- "native",
24
- "grep",
25
- "text-processing",
26
- "clipboard",
27
- "image",
28
- "pty",
29
- "shell",
30
- "syntax-highlighting"
31
- ],
32
- "main": "./src/index.ts",
33
- "types": "./src/index.ts",
34
- "scripts": {
35
- "build:native": "bun scripts/build-native.ts",
36
- "dev:native": "bun scripts/build-native.ts --dev",
37
- "embed:native": "bun scripts/embed-native.ts",
38
- "check": "biome check . && tsgo -p tsconfig.json",
39
- "fix": "biome check --write --unsafe .",
40
- "test": "bun run build:native && bun test",
41
- "bench": "bun bench/grep.ts"
42
- },
43
- "dependencies": {
44
- "@nghyane/arcane-utils": "workspace:*"
45
- },
46
- "devDependencies": {
47
- "@types/bun": "^1.3.9"
48
- },
49
- "engines": {
50
- "bun": ">=1.3.7"
51
- },
52
- "files": [
53
- "src",
54
- "native",
55
- "README.md"
56
- ],
57
- "exports": {
58
- ".": {
59
- "types": "./src/index.ts",
60
- "import": "./src/index.ts"
61
- },
62
- "./*": {
63
- "types": "./src/*.ts",
64
- "import": "./src/*.ts"
65
- },
66
- "./clipboard": {
67
- "types": "./src/clipboard/index.ts",
68
- "import": "./src/clipboard/index.ts"
69
- },
70
- "./clipboard/*": {
71
- "types": "./src/clipboard/*.ts",
72
- "import": "./src/clipboard/*.ts"
73
- },
74
- "./glob": {
75
- "types": "./src/glob/index.ts",
76
- "import": "./src/glob/index.ts"
77
- },
78
- "./glob/*": {
79
- "types": "./src/glob/*.ts",
80
- "import": "./src/glob/*.ts"
81
- },
82
- "./grep": {
83
- "types": "./src/grep/index.ts",
84
- "import": "./src/grep/index.ts"
85
- },
86
- "./grep/*": {
87
- "types": "./src/grep/*.ts",
88
- "import": "./src/grep/*.ts"
89
- },
90
- "./highlight": {
91
- "types": "./src/highlight/index.ts",
92
- "import": "./src/highlight/index.ts"
93
- },
94
- "./highlight/*": {
95
- "types": "./src/highlight/*.ts",
96
- "import": "./src/highlight/*.ts"
97
- },
98
- "./html": {
99
- "types": "./src/html/index.ts",
100
- "import": "./src/html/index.ts"
101
- },
102
- "./html/*": {
103
- "types": "./src/html/*.ts",
104
- "import": "./src/html/*.ts"
105
- },
106
- "./image": {
107
- "types": "./src/image/index.ts",
108
- "import": "./src/image/index.ts"
109
- },
110
- "./image/*": {
111
- "types": "./src/image/*.ts",
112
- "import": "./src/image/*.ts"
113
- },
114
- "./keys": {
115
- "types": "./src/keys/index.ts",
116
- "import": "./src/keys/index.ts"
117
- },
118
- "./keys/*": {
119
- "types": "./src/keys/*.ts",
120
- "import": "./src/keys/*.ts"
121
- },
122
- "./ps": {
123
- "types": "./src/ps/index.ts",
124
- "import": "./src/ps/index.ts"
125
- },
126
- "./ps/*": {
127
- "types": "./src/ps/*.ts",
128
- "import": "./src/ps/*.ts"
129
- },
130
- "./pty": {
131
- "types": "./src/pty/index.ts",
132
- "import": "./src/pty/index.ts"
133
- },
134
- "./pty/*": {
135
- "types": "./src/pty/*.ts",
136
- "import": "./src/pty/*.ts"
137
- },
138
- "./shell": {
139
- "types": "./src/shell/index.ts",
140
- "import": "./src/shell/index.ts"
141
- },
142
- "./shell/*": {
143
- "types": "./src/shell/*.ts",
144
- "import": "./src/shell/*.ts"
145
- },
146
- "./text": {
147
- "types": "./src/text/index.ts",
148
- "import": "./src/text/index.ts"
149
- },
150
- "./text/*": {
151
- "types": "./src/text/*.ts",
152
- "import": "./src/text/*.ts"
153
- },
154
- "./work": {
155
- "types": "./src/work/index.ts",
156
- "import": "./src/work/index.ts"
157
- },
158
- "./work/*": {
159
- "types": "./src/work/*.ts",
160
- "import": "./src/work/*.ts"
161
- }
162
- }
2
+ "type": "module",
3
+ "name": "@nghyane/arcane-natives",
4
+ "version": "0.1.8",
5
+ "description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
6
+ "homepage": "https://github.com/nghyane/arcane",
7
+ "author": "Can Bölük",
8
+ "license": "GPL-3.0-or-later",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/nghyane/arcane.git",
15
+ "directory": "packages/natives"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/nghyane/arcane/issues"
19
+ },
20
+ "keywords": [
21
+ "napi",
22
+ "rust",
23
+ "native",
24
+ "grep",
25
+ "text-processing",
26
+ "clipboard",
27
+ "image",
28
+ "pty",
29
+ "shell",
30
+ "syntax-highlighting"
31
+ ],
32
+ "main": "./src/index.ts",
33
+ "types": "./src/index.ts",
34
+ "scripts": {
35
+ "build:native": "bun scripts/build-native.ts",
36
+ "dev:native": "bun scripts/build-native.ts --dev",
37
+ "embed:native": "bun scripts/embed-native.ts",
38
+ "check": "biome check . && tsgo -p tsconfig.json",
39
+ "fix": "biome check --write --unsafe .",
40
+ "test": "bun run build:native && bun test",
41
+ "bench": "bun bench/grep.ts"
42
+ },
43
+ "dependencies": {
44
+ "@nghyane/arcane-utils": "^0.1.7"
45
+ },
46
+ "devDependencies": {
47
+ "@types/bun": "^1.3.9"
48
+ },
49
+ "engines": {
50
+ "bun": ">=1.3.7"
51
+ },
52
+ "files": [
53
+ "src",
54
+ "native",
55
+ "README.md"
56
+ ],
57
+ "exports": {
58
+ ".": {
59
+ "types": "./src/index.ts",
60
+ "import": "./src/index.ts"
61
+ },
62
+ "./*": {
63
+ "types": "./src/*.ts",
64
+ "import": "./src/*.ts"
65
+ },
66
+ "./clipboard": {
67
+ "types": "./src/clipboard/index.ts",
68
+ "import": "./src/clipboard/index.ts"
69
+ },
70
+ "./clipboard/*": {
71
+ "types": "./src/clipboard/*.ts",
72
+ "import": "./src/clipboard/*.ts"
73
+ },
74
+ "./glob": {
75
+ "types": "./src/glob/index.ts",
76
+ "import": "./src/glob/index.ts"
77
+ },
78
+ "./glob/*": {
79
+ "types": "./src/glob/*.ts",
80
+ "import": "./src/glob/*.ts"
81
+ },
82
+ "./grep": {
83
+ "types": "./src/grep/index.ts",
84
+ "import": "./src/grep/index.ts"
85
+ },
86
+ "./grep/*": {
87
+ "types": "./src/grep/*.ts",
88
+ "import": "./src/grep/*.ts"
89
+ },
90
+ "./highlight": {
91
+ "types": "./src/highlight/index.ts",
92
+ "import": "./src/highlight/index.ts"
93
+ },
94
+ "./highlight/*": {
95
+ "types": "./src/highlight/*.ts",
96
+ "import": "./src/highlight/*.ts"
97
+ },
98
+ "./html": {
99
+ "types": "./src/html/index.ts",
100
+ "import": "./src/html/index.ts"
101
+ },
102
+ "./html/*": {
103
+ "types": "./src/html/*.ts",
104
+ "import": "./src/html/*.ts"
105
+ },
106
+ "./image": {
107
+ "types": "./src/image/index.ts",
108
+ "import": "./src/image/index.ts"
109
+ },
110
+ "./image/*": {
111
+ "types": "./src/image/*.ts",
112
+ "import": "./src/image/*.ts"
113
+ },
114
+ "./keys": {
115
+ "types": "./src/keys/index.ts",
116
+ "import": "./src/keys/index.ts"
117
+ },
118
+ "./keys/*": {
119
+ "types": "./src/keys/*.ts",
120
+ "import": "./src/keys/*.ts"
121
+ },
122
+ "./ps": {
123
+ "types": "./src/ps/index.ts",
124
+ "import": "./src/ps/index.ts"
125
+ },
126
+ "./ps/*": {
127
+ "types": "./src/ps/*.ts",
128
+ "import": "./src/ps/*.ts"
129
+ },
130
+ "./pty": {
131
+ "types": "./src/pty/index.ts",
132
+ "import": "./src/pty/index.ts"
133
+ },
134
+ "./pty/*": {
135
+ "types": "./src/pty/*.ts",
136
+ "import": "./src/pty/*.ts"
137
+ },
138
+ "./shell": {
139
+ "types": "./src/shell/index.ts",
140
+ "import": "./src/shell/index.ts"
141
+ },
142
+ "./shell/*": {
143
+ "types": "./src/shell/*.ts",
144
+ "import": "./src/shell/*.ts"
145
+ },
146
+ "./text": {
147
+ "types": "./src/text/index.ts",
148
+ "import": "./src/text/index.ts"
149
+ },
150
+ "./text/*": {
151
+ "types": "./src/text/*.ts",
152
+ "import": "./src/text/*.ts"
153
+ },
154
+ "./work": {
155
+ "types": "./src/work/index.ts",
156
+ "import": "./src/work/index.ts"
157
+ },
158
+ "./work/*": {
159
+ "types": "./src/work/*.ts",
160
+ "import": "./src/work/*.ts"
161
+ }
162
+ }
163
163
  }