-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 826 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 826 Bytes
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
{
"name": "svg-torch",
"version": "1.0.0",
"description": "Add a torch style spotlight on images and show the rest as black",
"main": "dist/torch-svg.umd.js",
"module": "dist/torch-svg.esm.js",
"type": "module",
"keywords": ["svg", "torch", "effect", "library"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "http-server .",
"test": "echo 'No tests yet!'",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JenksJM/SVG-Torch.git"
},
"author": "Jenksjm",
"license": "MIT",
"bugs": {
"url": "https://github.com/JenksJM/SVG-Torch/issues"
},
"homepage": "https://github.com/JenksJM/SVG-Torch#readme",
"devDependencies": {
"vite": "^6.0.7"
}
}