-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@cresteem/richie-js",
"displayName": "Richie JS",
"exports": {
".": {
"types": "./dist/types/richie.d.ts",
"import": "./dist/richie.js",
"require": "./dist/richie.js"
}
},
"description": " Richie JS is an advanced SEO toolkit that simplifies the creation of structured data for rich results, enhancing your website's visibility and performance on search engines. By automating the generation of JSON-LD schema, it accelerates SEO optimization, improves search engine rankings, and boosts user engagement with minimal effort. ",
"version": "2.0.2",
"main": "./dist/richie.js",
"files": [
"dist",
"logo/rjs-icon.svg"
],
"directories": {
"lib": "./dist/lib"
},
"preferGlobal": true,
"bin": {
"rjs": "./dist/bin/rjs.js"
},
"scripts": {
"bundle": "node ./dev/bundler.js",
"dev": "rimraf dist && tsc -p tscdev.json && yarn bundle -dev && yarn ncp ./bin/userconfig-template.js ./dist/bin/userconfig-template.js",
"build": "cls && rimraf dist && tsc -p tsconfig.json && yarn bundle -prod && yarn ncp ./bin/userconfig-template.js ./dist/bin/userconfig-template.js",
"clean": "cls && rimraf dist",
"deploy": "yarn build && yarn publish --access public && git push",
"test": "jest",
"start-server": "npx http-server test/test-sample -p 8080",
"ci": "start-server-and-test start-server http://localhost:8080 test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cresteem/Richie-JS.git"
},
"keywords": [
"seo automation",
"google snippets",
"web development",
"search optimization",
"website visibility",
"developer tools",
"cli tools",
"digital marketing",
"seo tool",
"rich results",
"structured data",
"schema markup",
"content optimization",
"richie js"
],
"author": "DARSAN <[email protected]>",
"license": "Apache-2.0",
"maintainers": [
"CRESTEEM <[email protected]>",
"DARSAN <[email protected]>"
],
"bugs": {
"url": "https://github.com/cresteem/Richie-JS/issues"
},
"homepage": "https://richiejs.cresteem.com",
"dependencies": {
"@prettier/sync": "0.5.2",
"cheerio": "1.0.0",
"commander": "^12.1.0",
"country-list": "2.3.0",
"glob": "11.0.0",
"js-sha3": "^0.9.3",
"luxon": "3.5.0",
"prettier": "^3.3.3"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@eslint-community/eslint-utils": "^4.4.1",
"@types/country-list": "2.1.4",
"@types/jest": "29.5.14",
"@types/luxon": "3.4.2",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-jest": "29.7.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"http-server": "^14.1.1",
"jest": "29.7.0",
"ncp": "^2.0.0",
"puppeteer": "^23.8.0",
"rimraf": "6.0.1",
"start-server-and-test": "^2.0.8",
"ts-node": "10.9.2",
"typescript": "^5.6.3"
}
}