-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "@tutao/oxmsg",
"version": "0.1.1",
"description": "js library for Microsoft Outlook Item files (.msg)",
"main": "dist/index.js",
"scripts": {
"build": "rollup --config rollup.config.js",
"exec:nodejs": "node examples/node.js",
"clean": "rm -rf ./dist ./build",
"types": "tsc",
"test": "rollup --config rollup_test.config.js && node 'build/test/index.js'"
},
"files": [
"lib/*",
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tutao/oxmsg.git"
},
"bugs": {
"url": "https://github.com/tutao/oxmsg/issues"
},
"author": "tutao GmbH",
"license": "MIT",
"homepage": "https://github.com/tutao/oxmsg#readme",
"dependencies": {
"address-rfc2822": "^2.0.6",
"cfb": "^1.2.0",
"iconv-lite": "^0.6.2",
"uuid": "^8.3.1",
"bytebuffer": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-classes": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.16.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/uuid": "^8.3.1",
"@types/bytebuffer": "^5.0.43",
"@types/iconv-lite": "^0.0.1",
"ospec": "^4.1.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4"
},
"type": "module",
"types": "dist/types"
}