-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 873 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 873 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
35
36
37
38
39
{
"name": "bubbly-bg",
"version": "1.0.0",
"description": "Lightweight and beautiful bubbly backgrounds in less than 1kB",
"main": "dist/bubbly-bg.js",
"types": "index.d.ts",
"files": [
"dist/bubbly-bg.js",
"src/bubbly-bg.js",
"index.d.ts"
],
"keywords": [
"background",
"canvas",
"animation",
"bubbles",
"bubbly",
"particles",
"lightweight"
],
"scripts": {
"build": "node minify.js",
"watch": "nodemon --watch src --exec 'npm run build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tipsy/bubbly-bg.git"
},
"author": "David Åse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tipsy/bubbly-bg/issues"
},
"homepage": "https://github.com/tipsy/bubbly-bg#readme",
"devDependencies": {
"nodemon": "^3.1.10",
"terser": "^5.44.0"
}
}