-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@jrnwn/morph-svg-paths",
"type": "module",
"version": "0.0.2",
"description": "A Tiny ~1.4Kb function to morph between SVG paths with same commands.",
"author": "Jaron Wanderley",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"exports": {
".": {
"require": "./dist/morph-svg-paths.umd.cjs",
"import": "./dist/morph-svg-paths.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaronwanderley/morph-svg-paths.git"
},
"keywords": [
"path",
"svg path",
"svg d",
"morph",
"morph path",
"morph svg"
],
"main": "./dist/morph-svg-paths.umd.cjs",
"module": "./dist/morph-svg-paths.js",
"unpkg": "./dist/morph-svg-paths.iife.js",
"jsdelivr": "./dist/morph-svg-paths.iife.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.11",
"@vitest/coverage-c8": "^0.25.5",
"eslint": "^8.29.0",
"terser": "^5.16.1",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.5"
}
}