-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
73 lines (73 loc) · 1.91 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
72
73
{
"name": "vue-inline-svg",
"version": "3.1.4",
"description": "Replace SVG images with inline SVG element",
"type": "module",
"exports": {
".": {
"module": "./src/index.js",
"import": "./src/index.js",
"types": "./types/index.d.ts",
"default": "./dist/vue-inline-svg.js"
},
"./*": "./*"
},
"main": "dist/vue-inline-svg.js",
"module": "src/index.js",
"browser": "dist/vue-inline-svg.js",
"unpkg": "dist/vue-inline-svg.min.js",
"types": "types/index.d.ts",
"files": [
"/src/",
"/types/",
"/dist/"
],
"scripts": {
"build": "rollup -c rollup.conf.js",
"test": "npm run lint && npm run test:ts",
"test:ts": "npm run test:prepare && tsc -p .",
"test:dts": "npm run test:prepare && check-dts test/*.ts",
"test:prepare": "npm i vue@3 --no-save",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix",
"prepublishOnly": "npm run test && npm run build",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"keywords": [
"vue",
"svg",
"inline",
"inject",
"image",
"replace"
],
"author": "shrpne <[email protected]>",
"license": "MIT",
"repository": "https://github.com/shrpne/vue-inline-svg",
"bugs": {
"url": "https://github.com/shrpne/vue-inline-svg/issues"
},
"homepage": "https://github.com/shrpne/vue-inline-svg",
"peerDependencies": {
"vue": "^3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"check-dts": "^0.8.2",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"pre-commit": "^1.2.2",
"rollup": "^4.21.3",
"typescript": "^5.6.2"
}
}