-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.25 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
{
"name": "rehype-twemojify",
"version": "4.0.5",
"type": "module",
"keywords": [
"remark",
"emoji",
"twemoji",
"javascript",
"js",
"typescript",
"ts"
],
"source": "./src/index.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "parcel build",
"clean": "rimraf dist .parcel-cache",
"coverage": "vitest run --coverage",
"generate": "node --loader=ts-node/esm --experimental-specifier-resolution=node .scripts/generate-html.ts",
"lint": "eslint",
"test": "vitest run",
"watch": "parcel watch",
"ci": "pnpm build && pnpm test && pnpm lint"
},
"repository": "git@github.com:cliid/rehype-twemojify.git",
"homepage": "https://github.com/cliid/rehype-twemojify",
"author": "cliid <cliid@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@parcel/config-default": "^2.2.1",
"@parcel/core": "^2.2.1",
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@parcel/validator-typescript": "^2.2.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@types/twemoji": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"c8": "^7.11.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"rehype": "^12.0.1",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.4",
"rehype-preset-minify": "^6.0.0",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"rimraf": "^3.0.2",
"to-vfile": "^7.2.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"unist-util-remove-position": "^4.0.1",
"vfile-reporter": "^7.0.3",
"vite": "^2.7.13",
"vitest": "^0.2.5"
},
"dependencies": {
"@types/hast": "^2.3.4",
"emoji-regex": "^10.0.0",
"postcss": "^8.4.5",
"string-replace-to-array": "^2.1.0",
"ts-essentials": "^9.1.2",
"twemoji": "^14.0.2",
"unified": "^10.1.1",
"unist-util-map": "^3.0.0"
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@6.29.0"
}