-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.81 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
65
66
67
68
69
70
71
72
73
74
{
"name": "cosmic-ui-lite",
"version": "1.0.5",
"description": "A lightweight, futuristic, space-themed UI component library built with TypeScript and vanilla JavaScript",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"screenshots/"
],
"keywords": [
"ui",
"components",
"typescript",
"css",
"space",
"futuristic",
"svg",
"animations",
"cosmic",
"sci-fi",
"vanilla-js",
"lite",
"lightweight",
"game-ui",
"zero-dependencies"
],
"author": "Richard Fu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/raw-fun-gaming/cosmic-ui-lite.git"
},
"bugs": {
"url": "https://github.com/raw-fun-gaming/cosmic-ui-lite/issues"
},
"homepage": "https://github.com/raw-fun-gaming/cosmic-ui-lite#readme",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"demo": "npm run build && open demo.html",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"sync-wiki": "./scripts/sync-wiki.sh"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"postcss-import": "^16.1.1",
"rollup": "^3.0.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-postcss": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
},
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./styles": "./dist/cosmic-ui.css"
}
}