-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 825 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 825 Bytes
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
{
"name": "rwzreader",
"version": "0.0.2",
"description": "Outlook rules (.rwz) file reader — converts binary RWZ files to JSON",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"bin": {
"rwzreader": "bin/index.js"
},
"files": [
"bin",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/asklar/rwzreader"
},
"author": "Alexander Sklar <asklar@microsoft.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"scripts": {
"start": "node bin/index.js",
"prestart": "npm run build",
"build": "tsc",
"clean": "node -e \"fs.rmSync('bin',{recursive:true,force:true})\"",
"test": "vitest run"
},
"type": "module"
}