-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.34 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
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
{
"name": "@material-table/exporters",
"publishConfig": {
"access": "public"
},
"version": "1.2.19",
"description": "Helper export methods for @material-table/core",
"files": [
"dist"
],
"include": [
"../src/**/*.ts",
"../src/**/*.mts",
"../src/**/*.tsx"
],
"scripts": {
"prepare": "tshy",
"test": "jest",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major -m 'Release v%s' && npm run git:push:tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s' && npm run git:push:tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s' && npm run git:push:tags",
"git:push:tags": "git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/material-table-core/exporters.git"
},
"sideEffects": false,
"type": "module",
"types": "./dist/commonjs/index.d.ts",
"keywords": [
"@material-table/core",
"material-table",
"material-ui",
"react"
],
"author": "material-table-core contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/material-table-core/exporters/issues"
},
"homepage": "https://github.com/material-table-core/exporters#readme",
"dependencies": {
"filefy": "^0.1.11",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"babel-jest": "^29.7.0",
"generate-changelog": "^1.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"tshy": "^1.7.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@material-table/core": "*"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js"
}