-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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": "omgi",
"version": "0.1.0",
"description": "Simple URL builder for OMGI",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage --coverageReporters='text-summary'",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jozefhruska/omgi.git"
},
"files": [
"dist/**"
],
"author": "Jozef Hruška",
"license": "MIT",
"bugs": {
"url": "https://github.com/jozefhruska/omgi/issues"
},
"homepage": "https://omgi.vercel.app",
"keywords": [
"OMGI",
"Open Graph protocol",
"Open Graph image",
"OG image",
"generator",
"custom"
],
"devDependencies": {
"@types/jest": "~27.4.1",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"eslint": "~8.13.0",
"eslint-config-prettier": "~8.5.0",
"husky": "~7.0.4",
"jest": "~27.5.1",
"prettier": "~2.6.2",
"rollup": "~2.70.1",
"rollup-plugin-dts": "~4.2.0",
"rollup-plugin-esbuild": "~4.8.2",
"ts-jest": "~27.1.4",
"typescript": "~4.6.3"
},
"dependencies": {
"query-string": "~7.1.1"
}
}