-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 KB
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
{
"name": "@collectionscms/plugin-wp-importer",
"version": "1.0.1",
"description": "Wordpress Importer Plugin for Collections.",
"type": "module",
"exports": "./index.js",
"scripts": {
"parse:xml": "node --loader ts-node/esm ./src/bin.ts parse:xml",
"lint": "eslint 'src/**/*.ts' --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore",
"typecheck": "tsc -p . --noEmit",
"copyfiles": "cpy './README.md' './LICENSE' './package.json' dist/",
"compile:tsc": "tsc -p ./tsconfig.production.json",
"compile": "yarn clean && yarn compile:tsc && yarn copyfiles",
"clean": "rimraf dist"
},
"author": {
"email": "hello@rocketa.co.jp",
"name": "Rocketa Inc.",
"url": "https://rocketa.co.jp"
},
"repository": {
"type": "git",
"url": "https://github.com/collectionscms/plugin-wp-importer"
},
"homepage": "https://collections.dev",
"maintainers": [
{
"name": "Rocketa Inc.",
"email": "hello@rocketa.co.jp",
"url": "https://rocketa.co.jp"
}
],
"dependencies": {
"@types/node": "^20.5.7",
"dayjs": "^1.11.9",
"html-to-text": "^9.0.5",
"isomorphic-dompurify": "^1.8.0",
"node-html-markdown": "^1.3.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/html-to-text": "^9.0.4",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"commander": "^11.0.0",
"cpy-cli": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.1.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"keywords": [
"collections",
"cms",
"headless",
"content management system",
"content management platform",
"open source",
"jam",
"jamstack",
"wordpress",
"blog",
"convert",
"markdown"
]
}