-
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.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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": "nonamekit",
"version": "1.0.0",
"description": "A lightweight UI toolkit built with native HTML and modern CSS. Zero JavaScript dependency.",
"keywords": [
"css",
"ui",
"framework",
"native",
"html",
"components",
"dialog",
"details",
"css-framework",
"frontend"
],
"homepage": "https://github.com/sid-devspot/nonamekit",
"bugs": {
"url": "https://github.com/sid-devspot/nonamekit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sid-devspot/nonamekit.git"
},
"author": "Siddarth G",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"style": "dist/nonamekit.css",
"scripts": {
"clean": "rimraf dist",
"dev": "sass --watch src/nonamekit.scss:dist/nonamekit.css --no-source-map",
"build:css": "sass src/nonamekit.scss dist/nonamekit.css --style=expanded --no-source-map",
"build:min": "sass src/nonamekit.scss dist/nonamekit.min.css --style=compressed --no-source-map",
"build": "npm run clean && npm run build:css && npm run build:min"
},
"devDependencies": {
"rimraf": "^6.1.3",
"sass": "^1.102.0"
}
}