-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.5 KB
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
{
"name": "animpath",
"version": "1.0.3",
"description": "Injectable animated stroke-based SVG library",
"type": "module",
"main": "./dist/animpath.umd.js",
"unpkg": "./dist/animpath.umd.js",
"module": "./dist/animpath.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/animpath.js",
"require": "./dist/animpath.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json",
"dev": "vite build --watch",
"demo": "vite --config vite.demo.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{ts,json}\""
},
"keywords": [
"svg",
"animation",
"stroke",
"drawing",
"vivus",
"icons",
"lucide",
"heroicons",
"fontawesome",
"iconify",
"ionicons",
"carbon",
"phosphor",
"material-icons"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"highlight.js": "^11.11.1",
"jsdom": "^28.1.0",
"lucide": "^0.469.0",
"perfect-scrollbar": "^1.5.6",
"prettier": "^3.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.56.0",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}