-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.95 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
{
"name": "@team-reflect/reflect-import",
"type": "module",
"version": "0.5.4",
"author": "Alex MacCaw",
"license": "MIT",
"repository": "git://github.com/team-reflect/reflect-import.git",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "TZ=UTC vitest",
"prepare": "tsup",
"size": "size-limit",
"analyze": "size-limit --why",
"lint": "eslint .",
"prepack": "yarn build",
"dist": "bumpp && yarn publish --non-interactive"
},
"typings": "dist/index.d.ts",
"dependencies": {
"@sindresorhus/slugify": "^2.2.0",
"date-fns": "^2.29.3",
"jsdom": "^20.0.3",
"lodash-es": "^4.17.21",
"mdast-util-find-and-replace": "^3.0.1",
"mdast-util-gfm-autolink-literal": "^2.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-gfm-autolink-literal": "^2.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-wiki-link": "^2.0.1",
"unified": "^11.0.3",
"unist-util-visit": "^5.0.0",
"urlpattern-polyfill": "^6.0.2",
"zod": "^3.21.4"
},
"peerDependencies": {},
"devDependencies": {
"@ocavue/eslint-config": "^0.4.5",
"@size-limit/preset-small-lib": "^8.1.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/prettier": "^2.0.0",
"@types/wicg-file-system-access": "^2020.9.6",
"bumpp": "^9.1.0",
"eslint": "^8.28.0",
"prettier": "^2.8.8",
"size-limit": "^8.1.0",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vitest": "^0.25.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "100 KB"
}
],
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"dts": true,
"clean": true
}
}