-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "@ascen/awesome",
"description": "An awesome commiter by ascen.",
"version": "1.2.0",
"module": "./build/index.js",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"main": "build/index.js",
"bin": "build/bin.js",
"scripts": {
"build": "tsc",
"postversion": "npm run build && npm publish"
},
"files": [
"./build",
"./awesome.sh",
"./LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anascen/awesome.git"
},
"keywords": [
"ascen",
"awesome",
"anascen",
"git",
"hooks",
"pre-commit",
"pre-commits",
"hook"
],
"author": "ascen",
"license": "MIT",
"bugs": {
"url": "https://github.com/anascen/awesome/issues"
},
"homepage": "https://github.com/anascen/awesome#readme",
"devDependencies": {
"@ascen/awesome": "^1.1.3",
"@ascen/corus-tsconfig": "^1.2.1",
"@types/node": "^20.9.4",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}