forked from johnny13/CosmicWave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "@huement/cosmicwave",
"version": "0.5.2",
"type": "module",
"description": "Lightweight, dependency-free SVG wave templates that dynamically generate themselves on render.",
"main": "dist/cosmicwave.js",
"module": "dist/cosmicwave.js",
"types": "dist/cosmicwave.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && npm run copy-to-docs",
"copy-to-docs": "cp dist/cosmicwave.js dist/cosmicwave.min.js dist/cosmicwave.d.ts docs/",
"prepublishOnly": "npm run build",
"definitionFile": "tsc src/cosmicwave.js --declaration --allowJs --emitDeclarationOnly --outDir src",
"serve": "http-server docs -p 8080 -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huement/CosmicWave.git"
},
"keywords": [
"javascript",
"svg",
"html",
"waves",
"wave",
"generative",
"templates-html"
],
"author": "Derek Scott",
"license": "ISC",
"bugs": {
"url": "https://github.com/huement/CosmicWave/issues"
},
"homepage": "https://CosmicWave.huement.com/",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"http-server": "^14.1.1",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.1.1"
}
}