-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 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
41
{
"name": "md-utils-ts",
"version": "2.0.0",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify --sourcemap",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"markdown",
"utils"
],
"author": "TomPenguin <[email protected]> (https://github.com/TomPenguin)",
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"bugs": {
"url": "https://github.com/TomPenguin/md-utils-ts/issues"
},
"homepage": "https://github.com/TomPenguin/md-utils-ts"
}