-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.04 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "robotstxt-util",
"version": "3.0.0",
"description": "RFC 9309 spec compliant robots.txt builder and parser. 🦾",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"lint": "eslint src",
"format:check": "prettier src --check",
"format": "prettier $(git diff --cached --name-only --diff-filter=ACMR src | sed 's| |\\\\ |g') --write --ignore-unknown",
"test": "vitest",
"build": "pkgroll --target=es2020 --target=node16.20 --sourcemap --clean-dist",
"prepare": "husky || true",
"commit": "cz"
},
"files": [
".npmrc",
"dist/*",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/muratgozel/robotstxt-util.git"
},
"keywords": [
"robots",
"robotstxt",
"seo",
"search-engine-optimization",
"robotstxt-parser",
"robotstxt-builder",
"rfc5234"
],
"author": {
"name": "Murat Gözel",
"email": "[email protected]",
"url": "https://gozel.com.tr"
},
"funding": {
"type": "patreon",
"url": "https://patreon.com/muratgozel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/muratgozel/robotstxt-util/issues"
},
"homepage": "https://github.com/muratgozel/robotstxt-util#readme",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@semantic-release/github": "^10.3.3",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.5.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"pkgroll": "^2.1.1",
"prettier": "3.3.3",
"semantic-release": "24.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^8.4.0",
"vitest": "^1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}