-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@adam-rocska/markdown-table",
"version": "1.0.2",
"description": "A library with a simple API for generating Markdown tables.",
"keywords": [
"markdown",
"table",
"generator",
"api",
"library",
"utility",
"tool",
"module",
"package",
"npm",
"node",
"js",
"javascript",
"typescript",
"ts",
"es6"
],
"author": {
"name": "Ádám László Rocska",
"url": "https://adam-rocska.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adam-rocska/markdown-table-typescript.git"
},
"bugs": {
"url": "https://github.com/adam-rocska/markdown-table-typescript/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/adam-rocska"
}
],
"scripts": {
"clean": "rimraf dist",
"build": "bunchee",
"test": "jest --env node",
"check": "pnpm eslint && pnpm attw --pack"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"bunchee": "^5.3.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"jest": "^29.7.0",
"pnpm": "^9.9.0",
"rimraf": "^6.0.1",
"type-fest": "^4.26.0",
"typescript": "^5.5.4"
},
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"@adam-rocska/markdown-table": "<rootDir>/src/index.ts",
"!(.*)": "<rootDir>/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testTimeout": 1000
},
"packageManager": "pnpm@9.4.0"
}