-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "@chenkunqing/note-image-export",
"version": "0.1.1",
"description": "Browser-side note to image export utilities extracted from Keep Clone",
"repository": {
"type": "git",
"url": "git+https://github.com/chenkunqing/note-image-export.git"
},
"homepage": "https://github.com/chenkunqing/note-image-export#readme",
"bugs": {
"url": "https://github.com/chenkunqing/note-image-export/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"README.zh-CN.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\"",
"build": "npm run clean && node ./scripts/run-tsc.mjs -p tsconfig.build.json",
"check": "node ./scripts/run-tsc.mjs -p tsconfig.json",
"pack:preview": "npm pack --dry-run",
"prepublishOnly": "npm run build && npm run check && npm run pack:preview"
},
"keywords": [
"browser",
"clipboard",
"png",
"note",
"notes",
"image",
"export",
"html-to-image",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"html-to-image": "^1.11.13"
},
"devDependencies": {
"html-to-image": "^1.11.13",
"typescript": "^5.7.0"
}
}