forked from evidence-dev/evidence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.5 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.5 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
{
"name": "@evidence-dev/preprocess",
"version": "6.0.3",
"description": "Markdown preprocessor for evidence.dev projects",
"author": "evidence.dev",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"build": "parcel build --no-cache",
"watch": "parcel watch",
"dev": "parcel watch",
"prepublish": "parcel build --no-cache"
},
"dependencies": {
"blueimp-md5": "^2.19.0",
"chalk": "4.1.0",
"fs-extra": "^11.2.0",
"hast-util-select": "^5.0.5",
"mdsvex": "0.11.0",
"prismjs": "^1.30.0",
"remark-parse": "8.0.2",
"rehype-slug": "4.0.1",
"rehype-autolink-headings": "5.1.0",
"svelte": "4.2.19",
"svelte-preprocess": "5.1.3",
"unified": "^9.1.0",
"unist-util-visit": "^2.0.3",
"yaml": "^2.2.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/blueimp-md5": "^2.18.2",
"@types/mock-fs": "^4.13.1",
"@types/prismjs": "^1.26.4",
"mock-fs": "^5.2.0",
"parcel": "^2.8.3",
"typescript": "5.4.2",
"vitest": "^2.1.9"
},
"peerDependencies": {
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"source": "index.cjs",
"targets": {
"main": {
"context": "node",
"includeNodeModules": [
"prismjs"
]
},
"module": {
"context": "node",
"includeNodeModules": true,
"sourceMap": false
}
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"@parcel/transformer-js": {
"inlineFS": true
}
}