-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.25 KB
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
{
"name" : "@solution-lib/space",
"version" : "0.1.6",
"description" : "Creates and manages the spaces",
"keywords" : ["solution", "space", "framework"],
"license" : "MIT",
"homepage" : "https://github.com/solution-lib/space#readme",
"bugs" : {
"url" : "https://github.com/solution-lib/space/issues"
},
"author" : {
"name" : "Maysara",
"email" : "maysara.elshewehy@gmail.com",
"url" : "https://github.com/maysara-elshewehy"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/solution-lib/space.git"
},
"type" : "module",
"main" : "./dist/main.js",
"types" : "./dist/main.d.ts",
"bin" : {
"space" : "./dist/main.js"
},
"files" : ["dist"],
"exports" : {
"." : {
"types" : "./dist/main.d.ts",
"import" : "./dist/main.js",
"require" : "./dist/main.js"
}
},
"scripts" : {},
"engines" : {
"bun" : ">=1.3.3"
},
"peerDependencies" : {
"bun" : "^1.3.3"
},
"dependencies" : {
"@inquirer/prompts" : "^8.0.2",
"@je-es/cli" : "^1.1.4"
},
"devDependencies" : {
"@eslint/js" : "^9.39.1",
"@stylistic/eslint-plugin" : "^5.6.1",
"@types/bun" : "^1.3.3",
"@types/node" : "^20.19.25",
"bun-plugin-dts" : "^0.3.0",
"bun-types" : "^1.3.3",
"ts-node" : "^10.9.2",
"tsup" : "^8.5.1",
"typescript" : "^5.9.3",
"typescript-eslint" : "^8.48.0"
}
}