-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "@tomjs/joker",
"version": "2.1.2",
"description": "🤡 In order to support some bad development habits, its use is not recommended.",
"keywords": [
"cli",
"joker",
"package",
"cjs",
"esm"
],
"author": {
"name": "Tom Gao",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"joker": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/joker.git"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"src/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "npm run build && np --any-branch --yolo --no-publish --message \"chore: release v%s\""
},
"dependencies": {
"cac": "^6.7.14",
"chalk": "4.1.2",
"tsup": "7.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@tomjs/commitlint": "^3.0.0",
"@tomjs/eslint": "^2.3.0",
"@tomjs/prettier": "^1.3.0",
"@tomjs/tsconfig": "^1.5.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.26",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"np": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "~5.3.3",
"vitest": "^1.4.0"
}
}