-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.11 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.11 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
{
"name": "esmate",
"type": "module",
"version": "2.2.2",
"description": "Uncomplicate JavaScript",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/viendinhcom/esmate.git"
},
"keywords": [
"esmate",
"cli",
"node",
"javascript",
"typescript",
"eslint",
"prettier",
"toolkit",
"utility"
],
"bin": {
"esm": "./dist/index.js",
"esmate": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"fix": "prettier --write . && eslint --fix .",
"check": "tsc && prettier --check . && eslint ."
},
"dependencies": {
"citty": "^0.1.6",
"concurrently": "^9.2.1",
"consola": "^3.4.2",
"dotenv": "^17.2.3",
"es-toolkit": "^1.43.0",
"find-up": "^7.0.0"
},
"devDependencies": {
"@esmate/eslint": "^1.2.2",
"@esmate/prettier": "^1.0.6",
"@rslib/core": "^0.7.1",
"@types/node": "^22.19.3",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"type-fest": "^4.41.0",
"typescript": "^5.9.3"
}
}