-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.35 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
{
"name": "your-comark-plugin",
"version": "0.0.0",
"description": "TODO: A Comark plugin that ...",
"keywords": [
"comark",
"markdown",
"mdc",
"plugin"
],
"homepage": "https://github.com/your-name/your-comark-plugin#readme",
"bugs": {
"url": "https://github.com/your-name/your-comark-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-name/your-comark-plugin.git"
},
"author": "Your Name <you@example.com>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"play": "tsx playground/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json",
"prepack": "npm run build"
},
"peerDependencies": {
"comark": ">=0.4.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"comark": "^0.4.0",
"tsdown": "^0.22.3",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@11.5.2",
"engines": {
"node": ">=20"
}
}