-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 916 Bytes
/
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
{
"name": "@bonuz/seo",
"version": "1.0.3",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "npx tsc -w",
"test": "jest"
},
"author": "Bonuz",
"contributors": [
{
"name": "Mostafa Talaat",
"email": "mostafa.talaat@bonuz.market"
},
{
"name": "Oliver Molnar",
"email": "oliver.molnar@bonuz.market"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bonuz-market/seo.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"esbuild": "^0.17.5",
"jest": "^29.4.1",
"rimraf": "^4.1.2",
"rollup": "^3.13.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
}
}