-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 2.14 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 2.14 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
{
"name": "@deckflow/deckuse",
"version": "1.2.1",
"license": "AGPL-3.0",
"type": "module",
"private": false,
"packageManager": "pnpm@10.6.3",
"engines": {
"node": ">=20.19.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./bin": {
"types": "./dist/bin.d.ts",
"import": "./dist/bin.js"
},
"./schema/command.json": "./schema/command.schema.json"
},
"files": [
"dist",
"assets",
"schema"
],
"bin": {
"deckuse": "./dist/bin.js"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "node scripts/generate-cli-version.mjs && tsc && node scripts/generate-schema.mjs",
"prepack": "node scripts/sync-npm-readme.mjs",
"postpack": "node scripts/sync-npm-readme.mjs --restore",
"lint": "eslint .",
"typecheck": "tsc --pretty false",
"test": "vitest run",
"test:integration-writes": "node scripts/integration-writes.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:no-commercial-leak": "node scripts/assert-no-commercial-leak.mjs",
"install:global": "node scripts/install-global.mjs",
"uninstall:global": "node scripts/uninstall-global.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm check:no-commercial-leak && node scripts/sync-npm-readme.mjs && changeset publish && node scripts/sync-npm-readme.mjs --restore"
},
"dependencies": {
"@deckflow/office2html": "^0.3.3",
"@xmldom/xmldom": "^0.9.10",
"@zip.js/zip.js": "^2.8.34",
"isomorphic-git": "latest",
"playwright-core": "^1.62.1",
"zod": "latest"
},
"devDependencies": {
"@changesets/cli": "latest",
"@eslint/js": "latest",
"@types/node": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"prettier": "latest",
"typescript": "^5.9.3",
"typescript-eslint": "latest",
"vitest": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deckflow/deckuse.git"
},
"homepage": "https://github.com/deckflow/deckuse#readme"
}