-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 KB
/
package.json
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
{
"name": "inline-attacher",
"version": "0.0.8",
"description": "📎 A modern port from Inline Attachment",
"type": "module",
"files": [
"dist"
],
"main": "./dist/inline-attacher.umd.cjs",
"module": "./dist/inline-attacher.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/inline-attacher.js",
"require": "./dist/inline-attacher.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "rimraf dist && tsc && vite build",
"preview": "vite preview",
"playground:dev": "pnpm -C playground dev",
"playground:deploy": "pnpm -C playground run deploy",
"lint": "eslint --fix --ext .ts src",
"prepublishOnly": "pnpm build",
"release": "pnpx standard-version && git push --follow-tags && pnpm publish",
"size-check": "pnpx vite-bundle-visualizer"
},
"keywords": [
"inline-attachment",
"attachment",
"upload",
"paste",
"drop",
"image",
"file"
],
"author": "Michael Wang 汪東陽 <[email protected]> (https://github.com/EastSun5566)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EastSun5566/inline-attachment"
},
"bugs": {
"url": "https://github.com/EastSun5566/inline-attachment/issues/new"
},
"homepage": "https://github.com/EastSun5566/inline-attachment",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@codemirror/view": ">=6.0.0"
},
"devDependencies": {
"@codemirror/state": "^6.4.1",
"@types/node": "^20.16.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"rimraf": "^5.0.10",
"typescript": "^5.6.3",
"vite": "^4.5.5"
},
"dependencies": {
"@codemirror/view": "^6.34.1"
}
}