-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "meeting-schedules-parser",
"version": "4.5.0",
"type": "module",
"description": "This tool will help you to parse and extract the needed meeting schedules from Meeting Workbook and Watchtower Study EPUB and JWPUB files.",
"keywords": [
"epub parse",
"jwpub parse",
"jw",
"jw.org",
"epub",
"jwpub"
],
"main": "./dist/node/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"copy-wasm.js"
],
"homepage": "https://github.com/sws2apps/meeting-schedules-parser#readme",
"author": "Scheduling Workbox System <contact@sws2apps.com>",
"bugs": {
"url": "https://github.com/sws2apps/meeting-schedules-parser/issues",
"email": "contact@sws2apps.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sws2apps/meeting-schedules-parser.git"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/sws2apps"
},
"bin": {
"setup": "./copy-wasm.js"
},
"scripts": {
"test": "vitest run test/unit",
"test:e2e": "vitest run test/e2e",
"build": "npx rimraf dist && npx rollup -c && npx tsup",
"parse": "tsx example/index.ts",
"locale:check": "node scripts/locale-manager.js check",
"locale:new": "node scripts/locale-manager.js new",
"setup:client": "cd client && npm install && npx meeting-schedules-parser",
"start:client": "cd client && npm run dev",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome"
},
"dependencies": {
"jszip": "^3.9.1",
"node-html-parser": "^8.0.3",
"pako": "^3.0.0",
"path-browserify": "^1.0.1",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-wasm": "^6.2.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^7.0.2",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.3",
"@types/pako": "^2.0.3",
"@types/path-browserify": "^1.0.2",
"@types/sql.js": "^1.4.9",
"chai": "^6.0.1",
"cypress": "^15.0.0",
"mocha": "^11.0.1",
"rimraf": "^6.0.0",
"rollup": "^4.0.0",
"rollup-plugin-copy": "^3.5.0",
"semantic-release": "^25.0.1",
"tslib": "^2.8.1",
"tsup": "^8.4.0",
"tsx": "^4.7.0",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}