-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 914 Bytes
/
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
{
"name": "myst-ext-lorem",
"version": "1.0.1",
"description": "A Lorem Ispum directive for MyST Markdown by Curvenote",
"type": "module",
"exports": "./dist/lorem.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myst-ext/myst-ext-lorem.git"
},
"keywords": [
"lorem ipsum",
"myst markdown",
"markdown",
"design",
"writing"
],
"author": "Steve Purves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/myst-ext/myst-ext-lorem/issues"
},
"homepage": "https://github.com/myst-ext/myst-ext-lorem#readme",
"devDependencies": {
"lorem-ipsum": "^2.0.8",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"unist-builder": "^4.0.0"
}
}