-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.09 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.09 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
{
"name": "rtfbuilder",
"version": "0.9.23",
"description": "A comprehensive JavaScript library for creating Rich Text Format (RTF) documents.",
"keywords": [
"rtf",
"document",
"generator",
"writer",
"creator"
],
"author": {
"name": "Antony Ducommun",
"url": "https://github.com/nitrotm"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nitrotm/rtfbuilder.git"
},
"bugs": {
"url": "https://github.com/nitrotm/rtfbuilder/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@4.9.1",
"type": "module",
"types": "./dist/index.d.cts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./builder": {
"import": "./dist/builder/index.js",
"require": "./dist/builder/index.cjs"
},
"./html": {
"import": "./dist/html/index.js",
"require": "./dist/html/index.cjs"
},
"./ooxml": {
"import": "./dist/ooxml/index.js",
"require": "./dist/ooxml/index.cjs"
},
"./rtf": {
"import": "./dist/rtf/index.js",
"require": "./dist/rtf/index.cjs"
},
"./validation": {
"import": "./dist/validation/index.js",
"require": "./dist/validation/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"*.md",
"*.json",
"*.cjs",
"*.cjs.map",
"*.d.cts",
"*.js",
"*.js.map",
"*.d.ts",
"**/*.cjs",
"**/*.cjs.map",
"**/*.d.cts",
"**/*.js",
"**/*.js.map",
"**/*.d.ts"
],
"dependencies": {
"fflate": "^0.8",
"rtfbuilder-jsx-runtime": "^1"
},
"devDependencies": {
"@types/node": "^20",
"@xmldom/xmldom": "^0.8",
"tsdown": "^0.15",
"tslib": "^2",
"tsx": "^4",
"typescript": "^5"
},
"resolutions": {
"rtfbuilder-jsx-runtime": "portal:./jsx-runtime"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"compile": "tsc",
"build": "tsc && tsdown"
}
}