-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"private": true,
"name": "yax-cli-monorepo",
"version": "1.0.0",
"description": "Yet another command line tool helper, multi-level, and generator using Javascript/Typescript. (By the way my last name is Yax)",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"/dist",
"/types",
"tsconfig.json"
],
"scripts": {
"test": "npm test --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"build": "npm run build --workspaces",
"version-packages": "changeset version && npm i --package-lock-only",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiguelYax/yax-cli.git"
},
"bugs": {
"url": "https://github.com/M`iguelYax/yax-cli/issues"
},
"homepage": "https://github.com/MiguelYax/yax-cli#readme",
"keywords": [
"javascript",
"typescript",
"cli",
"command",
"argument",
"args",
"option",
"parsing",
"parser"
],
"author": "Miguel Yax <[email protected]>",
"license": "MIT",
"workspaces": ["./packages/*"],
"volta": {
"node": "20.18.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}