-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "@ooxml-tools/cli",
"description": "Command line tools for dealing with Office Open XML files in node.js",
"version": "0.4.1",
"license": "MIT",
"type": "module",
"main": "./dist/npm/index.js",
"types": "./dist/npm/types.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ooxml-tools/cli"
},
"bin": {
"ooxml": "./dist/npm/bin/ooxml-cli.js"
},
"scripts": {
"lint": "npx prettier . --check",
"lint:format": "npx prettier . --write",
"test": "exit 0",
"build": "npm run build:npm",
"build:npm": "rollup -c rollup.config.ts --configPlugin typescript"
},
"files": [
"./dist/npm",
"./package.json",
"./README.md"
],
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-virtual": "^3.0.2",
"@tsconfig/node24": "^24.0.0",
"@types/node": "^24.0.0",
"@types/yargs": "^17.0.32",
"prettier": "^3.4.2",
"rollup": "^4.18.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.6.3",
"tsx": "^4.16.2"
},
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@ooxml-tools/file": "^0.6.1",
"@ooxml-tools/render": "^0.5.2",
"@ooxml-tools/units": "^0.4.6",
"@ooxml-tools/validate": "^0.4.4",
"execa": "^9.3.0",
"open": "^11.0.0",
"yargs": "^18.0.0"
}
}