-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@syls/syls",
"type": "module",
"files": [
"./-module",
"./-submodule",
"./package.json"
],
"author": {
"name": "Yakhin Nikita Artemovich",
"email": "[email protected]"
},
"version": "1.0.0",
"license": "Apache-2.0",
"funding": {
"url": "https://boosty.to/mr.y.nikita",
"type": "boosty"
},
"exports": {
".": {
"types": "./-module/type.d.ts",
"import": "./-module/export.mjs"
}
},
"scripts": {
"test": "node ./-module/module.test.js"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"y",
"lib",
"syls"
],
"repository": {
"url": "https://github.com/MrYNikita/Y.git",
"type": "git"
},
"description": "SYLS (Software Y Lib Solutions) - библиотека, дающая доступ к функциональным и системным решениям, для разработки разнонаправленных приложений.",
"dependencies": {
"@syls/ai": "*",
"@syls/web": "*",
"@syls/table": "*",
"@syls/array": "*",
"@syls/bool": "*",
"@syls/class": "*",
"@syls/crypto": "*",
"@syls/func": "*",
"@syls/game": "*",
"@syls/ject": "*",
"@syls/key": "*",
"@syls/lang": "*",
"@syls/listener": "*",
"@syls/number": "*",
"@syls/os": "*",
"@syls/process": "*",
"@syls/regexp": "*",
"@syls/string": "*",
"@syls/terminal": "*",
"@syls/test": "*",
"@syls/y": "*"
}
}