-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "@cycrilabs/ws-ctrl",
"version": "1.6.0",
"description": "CLI tool to initialize a development workspace",
"repository": {
"type": "git",
"url": "git+https://github.com/CycriLabs/ws-ctrl.git"
},
"publishConfig": {
"access": "public"
},
"author": "Marc Scheib",
"license": "MIT",
"bugs": {
"url": "https://github.com/CycriLabs/ws-ctrl/issues"
},
"homepage": "https://github.com/CycriLabs/ws-ctrl#readme",
"files": [
"dist"
],
"bin": {
"@cycrilabs/ws-ctrl": "dist/index.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.ts",
"lint": "eslint ./src",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup",
"build:watch": "tsup --watch",
"release": "npx --yes -p @semantic-release/changelog -p @semantic-release/git semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.33.0",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"memfs": "^4.36.0",
"prettier": "^3.6.2",
"tempy": "^3.1.0",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
},
"dependencies": {
"chalk": "^5.5.0",
"commander": "^14.0.0",
"conf": "^14.0.0",
"dotenv": "^17.2.1",
"prompts": "^2.4.2"
}
}