-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "lvlup",
"version": "1.0.12",
"description": "A simple version manager solution for packages",
"private": "true",
"type": "module",
"keywords": ["versioning", "lvlup", "publish"],
"bin": {
"lvlup": "index.js"
},
"exports": {
".": {
"types": "./dist/index.d.js",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint -c eslint.config.js",
"format-check": "prettier . --check",
"format-fix": "prettier . --write",
"test": "node --test",
"typecheck": "tsc -p tsconfig.json",
"build": "export NODE_ENV=production && node ./build.config.js",
"build:dev": "export NODE_ENV=development && node ./build.config.js",
"dev": "node dist/index.js",
"dev-init": "node dist/index.js init",
"dev-add": "node dist/index.js add",
"dev-status": "node dist/index.js status",
"dev-bump": "node dist/index.js bump",
"dev-publish": "cd dist && node index.js publish",
"dev-pub": "cd dist && npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talkohavy/lvlup.git"
},
"bugs": {
"url": "https://github.com/talkohavy/lvlup/issues",
"email": "[email protected]"
},
"author": "Tal Kohavy <[email protected]> (https://github.com/talkohavy)",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"console-table-printer": "^2.12.1",
"external-editor": "^3.1.0",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"human-id": "^4.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/yargs": "^17.0.33",
"esbuild": "^0.24.0",
"eslint": "^9.17.0",
"eslint-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}