-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "@bsorrentino/osts-cli",
"version": "1.4.0",
"description": "CLI for manage OSTS files",
"types": "office-js-simplified.d.ts",
"files": [
"bin/*.js"
],
"bin": {
"osts": "./index.mjs"
},
"type": "module",
"homepage": "https://github.com/bsorrentino/OfficeScripts-CLI.git",
"bugs": {
"url": "https://github.com/bsorrentino/OfficeScripts-CLI.git",
"email": "bartolomeo.sorrentino@gmail.com"
},
"author": "bsorrentino <bartolomeo.sorrentino@gmail.com> (http://soulsoftware-bsc.blogspot.it/)",
"keywords": [
"Office365",
"OfficeScript",
"Excel365"
],
"license": "MIT",
"scripts": {
"start": "node index.mjs",
"build": "tsc",
"pack": "node index.mjs pack",
"unpack": "node index.mjs unpack",
"test": "",
"changelog": "git-changelog-command-line -of CHANGELOG.md"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^16.18.53",
"@types/office-js": "^1.0.344",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"minimist": "^1.2.8",
"preferences": "^2.0.2",
"zx": "^7.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/bsorrentino/OfficeScripts-CLI.git"
}
}