Skip to content

Commit 49f5cb1

Browse files
committed
Update package.json
1 parent 064a61e commit 49f5cb1

File tree

1 file changed

+62
-58
lines changed

1 file changed

+62
-58
lines changed

package.json

Lines changed: 62 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,64 @@
11
{
2-
"name": "kromacss",
3-
"version": "1.0.6",
4-
"description": "A modern, lightweight, and dependency-free CSS framework designed for simplicity, speed, and adaptability.",
5-
"main": "dist/css/main.css",
6-
"module": "dist/js/main.js",
7-
"types": "dist/index.d.ts",
8-
"scripts": {
9-
"build": "rollup -c",
10-
"watch": "rollup -c --watch",
11-
"test": "echo \"No test specified\" && exit 0",
12-
"start": "npm run build && npm run watch",
13-
"lint": "stylelint '**/*.css' --fix"
14-
},
15-
"keywords": [
16-
"css",
17-
"framework",
18-
"responsive",
19-
"modular",
20-
"accessible",
21-
"frontend",
22-
"UI",
23-
"design"
24-
],
25-
"author": "Altxria Inc.",
26-
"license": "CC BY-ND 4.0",
27-
"repository": {
28-
"type": "git",
29-
"url": "https://github.com/altxriainc/kromacss.git"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/altxriainc/kromacss/issues"
33-
},
34-
"homepage": "https://github.com/altxriainc/kromacss",
35-
"dependencies": {},
36-
"devDependencies": {
37-
"rollup": "^3.2.0",
38-
"rollup-plugin-import-css": "^3.0.0",
39-
"postcss": "^8.4.0",
40-
"stylelint": "^15.0.0",
41-
"autoprefixer": "^10.4.0",
42-
"cssnano": "^5.1.0"
43-
},
44-
"peerDependencies": {
45-
"modern-css-reset": "^1.4.0"
46-
},
47-
"engines": {
48-
"node": ">=14.0.0"
49-
},
50-
"files": [
51-
"dist/",
52-
"README.md",
53-
"LICENSE"
54-
],
55-
"funding": {
56-
"type": "github",
57-
"url": "https://github.com/sponsors/altxriainc"
58-
}
2+
"name": "kromacss",
3+
"version": "1.0.6",
4+
"description": "A modern, lightweight, and dependency-free CSS framework designed for simplicity, speed, and adaptability.",
5+
"main": "src/js/bundle.js",
6+
"style": "src/css/bundle.css",
7+
"scripts": {
8+
"build": "rollup -c",
9+
"watch": "rollup -c --watch",
10+
"test": "echo \"No test specified\" && exit 0",
11+
"start": "npm run build && npm run watch",
12+
"lint": "stylelint '**/*.css' --fix",
13+
"release": "standard-version"
14+
},
15+
"keywords": [
16+
"css",
17+
"framework",
18+
"responsive",
19+
"modular",
20+
"accessible",
21+
"frontend",
22+
"UI",
23+
"design"
24+
],
25+
"author": "Altxria Inc.",
26+
"license": "CC BY-ND 4.0",
27+
"repository": {
28+
"type": "git",
29+
"url": "https://github.com/altxriainc/kromacss.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/altxriainc/kromacss/issues"
33+
},
34+
"homepage": "https://github.com/altxriainc/kromacss",
35+
"dependencies": {},
36+
"devDependencies": {
37+
"rollup": "^3.2.0",
38+
"rollup-plugin-import-css": "^3.0.0",
39+
"postcss": "^8.4.0",
40+
"stylelint": "^15.0.0",
41+
"autoprefixer": "^10.4.0",
42+
"cssnano": "^5.1.0",
43+
"standard-version": "^9.5.0"
44+
},
45+
"peerDependencies": {
46+
"modern-css-reset": "^1.4.0"
47+
},
48+
"engines": {
49+
"node": ">=14.0.0"
50+
},
51+
"files": [
52+
"src/js/bundle.js",
53+
"src/css/bundle.css",
54+
"README.md",
55+
"LICENSE"
56+
],
57+
"publishConfig": {
58+
"access": "public"
59+
},
60+
"funding": {
61+
"type": "github",
62+
"url": "https://github.com/sponsors/altxriainc"
63+
}
5964
}
60-

0 commit comments

Comments
 (0)