-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "simple-image-preview",
"description": "A lightweight image preview library",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"exports": {
"types": "./simple-image-preview.d.ts",
"import": "./dist/simple-image-preview.es.js",
"default": "./dist/simple-image-preview.umd.js"
},
"author": "Lete114",
"license": "MIT",
"files": [
"dist",
"simple-image-preview.d.ts"
],
"bugs": {
"url": "https://github.com/Lete114/simple-image-preview/issues"
},
"homepage": "https://github.com/Lete114/simple-image-preview#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lete114/simple-image-preview.git"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"prettier": "2.8.8",
"typescript": "^5.0.2",
"vite": "^4.3.2"
}
}