-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "stash-mapfile",
"version": "1.0.3",
"description": "stash source-map files,and restore them when you need",
"author": "zhixiaoqiang <[email protected]> (https://zhixiaoqiang.github.io/zhixiaoqiang/)",
"bin": {
"stash-mapfile": "./bin/index.js"
},
"type": "module",
"contributors": [],
"homepage": "https://github.com/zhixiaoqiang/stash-mapfile",
"bugs": "https://github.com/zhixiaoqiang/stash-mapfile/issues",
"repository": "https://github.com/zhixiaoqiang/stash-mapfile",
"license": "MIT",
"engines": {
"node": ">=16"
},
"keywords": [],
"licenses": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./lib/*",
"./lib/index.d.ts"
]
}
},
"files": [
"bin",
"lib"
],
"scripts": {
"start": "esno ./index.ts",
"dev": "tsc -w",
"build": "tsc",
"lint": "eslint . --cache --fix",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"prepare": "husky install",
"markdownlint-fix": "markdownlint-cli2-fix '**.md' '#node_modules'",
"changelogen": "changelogen",
"check-fresh-deps": "npx taze",
"fresh-deps": "npx taze -w"
},
"dependencies": {
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"inquirer": "^9.0.2",
"meow": "^10.1.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"changelogen": "^0.1.1",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-module-utils": "^2.7.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"esno": "^0.16.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint-cli2": "^0.4.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.(j|t)s": "eslint --cache --fix",
"*.{css,md}": "prettier --write",
"*.md": "pnpm markdownlint-fix"
}
}