-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1004 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1004 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
{
"name": "splashcss",
"version": "0.1.0",
"description": "A light-weight CSS framework to implement basic layout and a handful of components.",
"main": "index.js",
"otherDetails": {
"properName": "SplashCSS"
},
"scripts": {
"build": "npm run buildProd && npm run buildDemo",
"buildProd": "vite build",
"buildDemo": "vite build --config vite.demo.config.ts",
"scss": "node-sass --watch src -o css",
"start": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techbash/SplashCSS.git"
},
"keywords": [
"CSS",
"CSS Framework",
"UI Framework",
"Web UI",
"Web UI Framework"
],
"author": "TechBash Foundation (https://www.techbashfoundation.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/techbash/SplashCSS/issues"
},
"homepage": "https://github.com/techbash/SplashCSS#readme",
"dependencies": {
"sass": "^1.62.1",
"vite": "^4.3.8",
"vite-plugin-banner": "^0.7.0"
}
}