-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "@greenfinity/rescript-docx",
"description": "ReScript bindings for the docx.js lib",
"version": "0.2.0",
"scripts": {
"changelog": "yarn auto-changelog -p && git add HISTORY.md",
"build": "yarn rescript:build",
"rescript:clean": "yarn rescript clean",
"rescript:build": "yarn rescript build",
"rescript:build:dev": "yarn rescript build --dev",
"rescript:dev": "yarn rescript watch --dev",
"test": "yarn vitest --run --coverage --allow-only",
"test:dev": "yarn vitest",
"yalc:dev": "yarn rescript:dev & yarn nodemon -x \"yalc push\"",
"yalc:push": "yarn nodemon -e res -x \"yalc push\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenfinity/rescript-docx.git"
},
"keywords": [
"rescript",
"docx",
"rescript-bindings",
"rescript-wrapper"
],
"author": "Emile Rolley <emile.rolley@tuta.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenfinity/rescript-docx/issues"
},
"homepage": "https://github.com/greenfinity/rescript-docx#readme",
"devDependencies": {
"auto-changelog": "^2.5.0",
"file-saver": "^2.0.5",
"nodemon": "^3.1.7",
"rescript": "^12.0.0-beta.4",
"rescript-nodejs": "^16.1.0"
},
"dependencies": {
"@vitest/coverage-v8": "^2.1.8",
"docx": "^8.2.3",
"jsdom": "^25.0.1",
"vitest": "^2.1.8"
},
"peerDependencies": {
"rescript": "^12.0.0-beta.4",
"rescript-nodejs": "^16.1.0"
},
"packageManager": "yarn@4.6.0"
}