-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "@cwos/package-name",
"version": "0.0.9",
"description": "A detailed description",
"main": "dist/index.js",
"bin": {
"package-name": "dist/index.js"
},
"preferGlobal": true,
"scripts": {
"build": "tsc",
"lint": "eslint *.ts",
"format": "eslint *.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CreoWis/git-repo.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"add",
"your",
"tags",
"here"
],
"author": "author",
"license": "ISC",
"bugs": {
"url": "https://github.com/CreoWis/git-repo/issues"
},
"homepage": "https://github.com/CreoWis/git-repo#readme",
"devDependencies": {
"@types/node": "^20.11.25",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"kleur": "^3.0.3",
"undici-types": "^5.26.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}