-
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.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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": "create-skip-service",
"version": "1.2.1",
"description": "CLI tool to create and initialize Skip services with customizable templates",
"bin": {
"create-skip-service": "./dist/cli.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"skip",
"service",
"template"
],
"main": "src/cli.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/SkipLabs/create-skip-service.git"
},
"bugs": {
"url": "https://github.com/SkipLabs/create-skip-service/issues"
},
"homepage": "https://github.com/SkipLabs/create-skip-service#readme",
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc --watch",
"clean": "rm -rf dist && rm -rf node_modules",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"pre-commit": "pnpm lint-staged && pnpm test:run",
"pre-push": "pnpm test:run && pnpm typecheck"
},
"author": "SkipLabs",
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@types/node": "^25.3.5",
"@vitest/ui": "^4.0.18",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"prettier": "^3.8.1",
"yargs": "^18.0.0"
},
"lint-staged": {
"**/*.{ts,js,mts}": [
"prettier --write"
],
"**/*.{json,md}": [
"prettier --write"
]
}
}