-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "@svgdotjs/svg.select.js",
"version": "4.0.2",
"description": "An extension of svg.js which allows to select elements with mouse",
"type": "module",
"keywords": [
"svg.js",
"select",
"mouse"
],
"bugs": "https://github.com/svgdotjs/svg.select.js/issues",
"license": "MIT",
"author": "Ulrich-Matthias Schäfer",
"homepage": "https://github.com/svgdotjs/svg.select.js",
"main": "dist/svg.select.umd.cjs",
"unpkg": "dist/svg.select.iife.js",
"jsdelivr": "dist/svg.select.iife.js",
"browser": "dist/svg.select.js",
"module": "dist/svg.select.js",
"typings": "./svg.select.js.d.ts",
"exports": {
".": {
"types": "./svg.select.js.d.ts",
"import": "./dist/svg.select.js",
"require": "./dist/svg.select.umd.cjs"
},
"./src/*": "./src/"
},
"files": [
"/dist",
"/src",
"/svg.select.js.d.ts"
],
"scripts": {
"dev": "vite",
"build": "tsc && prettier --write . && eslint ./src && vite build",
"zip": "zip -j dist/svg.select.js.zip -- LICENSE README.md dist/svg.select.css dist/svg.select.iife.js dist/svg.select.iife.js.map dist/svg.select.js dist/svg.select.js.map dist/svg.select.umd.cjs dist/svg.select.umd.cjs.map",
"prepublishOnly": "rm -rf ./dist && npm run build",
"postpublish": "npm run zip"
},
"repository": {
"type": "git",
"url": "https://github.com/svgdotjs/svg.select.js.git"
},
"engines": {
"node": ">= 14.18"
},
"devDependencies": {
"@types/node": "^20.14.7",
"@vitejs/plugin-vue": "^5.0.5",
"eslint-plugin-import-x": "^0.5.2",
"prettier": "^3.3.2",
"terser": "^5.31.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"eslint": "^9.6.0"
},
"peerDependencies": {
"@svgdotjs/svg.js": "^3.2.4"
}
}