-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1004 Bytes
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
{
"name": "@gwigz/slua-modules",
"version": "0.5.0",
"description": "Shared runtime modules for SLua projects",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gwigz/slua.git",
"directory": "packages/modules"
},
"files": [
"src"
],
"type": "module",
"exports": {
"./config": {
"types": "./src/config/index.ts",
"default": "./src/config/index.ts"
},
"./testing": {
"types": "./src/testing/index.ts",
"default": "./src/testing/index.ts"
},
"./utilities": {
"types": "./src/utilities/index.ts",
"default": "./src/utilities/index.ts"
},
"./yield": {
"types": "./src/yield/index.ts",
"default": "./src/yield/index.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun test"
},
"dependencies": {
"@gwigz/slua-types": "^1.4.1"
},
"peerDependencies": {
"@typescript-to-lua/language-extensions": "^1.0.0"
}
}