-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 KB
/
package.json
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
{
"name": "kromacss",
"version": "1.0.6",
"description": "A modern, lightweight, and dependency-free CSS framework designed for simplicity, speed, and adaptability.",
"main": "src/js/bundle.js",
"style": "src/css/bundle.css",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"test": "echo \"No test specified\" && exit 0",
"start": "npm run build && npm run watch",
"lint": "stylelint '**/*.css' --fix",
"release": "standard-version"
},
"keywords": [
"css",
"framework",
"responsive",
"modular",
"accessible",
"frontend",
"UI",
"design"
],
"author": "Altxria Inc.",
"license": "CC BY-ND 4.0",
"repository": {
"type": "git",
"url": "https://github.com/altxriainc/kromacss.git"
},
"bugs": {
"url": "https://github.com/altxriainc/kromacss/issues"
},
"homepage": "https://github.com/altxriainc/kromacss",
"dependencies": {},
"devDependencies": {
"rollup": "^3.2.0",
"rollup-plugin-import-css": "^3.0.0",
"postcss": "^8.4.0",
"stylelint": "^15.0.0",
"autoprefixer": "^10.4.0",
"cssnano": "^5.1.0",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"modern-css-reset": "^1.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"src/js/bundle.js",
"src/css/bundle.css",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/altxriainc"
}
}