generated from SevenOutman/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "prettier-plugin-sort-markdown-table",
"version": "0.0.0",
"description": "Prettier plugin that sorts markdown tables according to their first column",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"prettier",
"plugin",
"markdown",
"table"
],
"repository": "github:SevenOutman/prettier-plugin-sort-markdown-table",
"bugs": {
"url": "https://github.com/SevenOutman/prettier-plugin-sort-markdown-table/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest run",
"test:coverage": "pnpm test -- --coverage",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"@types/prettier": "^2.7.2",
"c8": "^7.12.0",
"prettier": "2.5.1",
"tsup": "^6.6.2",
"typescript": "4.5.4",
"vitest": "0.12.6"
},
"peerDependencies": {
"prettier": "^2.5.1"
}
}