-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.18 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.18 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
{
"name" : "@je-es/cli",
"version" : "1.1.4",
"description" : "Build faster | Sleep better",
"keywords" : ["je-es", "cli"],
"license" : "MIT",
"homepage" : "https://github.com/je-es/cli#readme",
"bugs" : {
"url" : "https://github.com/je-es/cli/issues"
},
"author" : {
"name" : "Maysara",
"email" : "maysara.elshewehy@gmail.com",
"url" : "https://github.com/maysara-elshewehy"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/je-es/cli.git"
},
"type" : "module",
"main" : "./dist/main.js",
"types" : "./dist/main.d.ts",
"files" : ["dist"],
"exports" : {
"." : {
"types" : "./dist/main.d.ts",
"import" : "./dist/main.js",
"require" : "./dist/main.js"
}
},
"scripts" : {
"build" : "tsup",
"lint" : "eslint src --ext .ts",
"test" : "bun test"
},
"engines" : {
"bun" : ">=1.3.3"
},
"peerDependencies" : {
"bun" : ">=1.3.3"
},
"dependencies" : {
},
"devDependencies" : {
"@eslint/js" : "^9.34.0",
"@stylistic/eslint-plugin" : "^5.3.1",
"@types/bun" : "^1.1.23",
"@types/node" : "^20.12.7",
"bun-plugin-dts" : "^0.3.0",
"bun-types" : "^1.1.38",
"ts-node" : "^10.9.2",
"tsup" : "^8.5.1",
"typescript" : "^5.4.5",
"typescript-eslint" : "^8.42.0"
}
}