forked from VolodymyrBaydalka/docxjs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "docx-preview",
"version": "0.4.0",
"license": "Apache-2.0",
"keywords": [
"word",
"docx"
],
"author": {
"name": "Volodymyr Baydalka"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VolodymyrBaydalka/docxjs.git"
},
"dependencies": {
"jszip": ">=3.0.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"diff": "^8.0.2",
"jsdom": "^29.1.1",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"rollup": "^4.9.1",
"tslib": "^2.4.0",
"typescript": "^5.0.3"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build-prod": "rollup --config rollup.config.mjs --environment BUILD:production",
"watch": "rollup --config rollup.config.mjs --watch",
"serve": "node scripts/dev-server.mjs",
"dev": "npm run build && npm run serve",
"test": "npm run build && playwright test",
"test:track-changes": "npm run build && node scripts/test-track-changes.mjs",
"test:interop": "npm run build && playwright test --config=playwright.interop.config.ts",
"test:conformance": "npm run build && playwright test --config=playwright.conformance.config.ts"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/docx-preview.mjs",
"require": "./dist/docx-preview.js",
"types": "./dist/docx-preview.d.ts"
}
},
"types": "dist/docx-preview.d.ts"
}