-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@s-elo/npm-package-devtool",
"version": "1.0.2",
"description": "Npm Package Devtool",
"author": "s-elo",
"bin": {
"spt": "./bin/index.js"
},
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/s-elo/npm-package-devtool",
"scripts": {
"dev": "pnpm build --watch",
"ts-check": "tsc -p tsconfig.build.json --noEmit",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm ts-check && pnpm build",
"release": "bumpp && npm publish",
"version:feature": "node ./scripts/version-feature.mjs",
"versions": "npm view @s-elo/npm-devtool versions",
"prepare": "git config --local core.hooksPath ./.git/hooks/ && simple-git-hooks"
},
"devDependencies": {
"@types/debounce": "^3.0.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^6.5.0",
"bumpp": "^9.2.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^14.0.1",
"prettier": "^2.3.2",
"simple-git": "^3.19.1",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^11.0.0",
"concurrently": "^8.2.1",
"debounce": "^1.2.1",
"glob": "^10.3.10",
"inquirer": "^8.0.0",
"inquirer-checkbox-search": "^1.0.1",
"node-watch": "^0.7.4",
"recursive-copy": "^2.0.14"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm ts-check"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"license": "MIT",
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
}
}