-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
{
"name": "semantic-element",
"version": "0.2.14",
"description": "A semantic CSS framework that styles native HTML elements",
"type": "module",
"style": "dist/semantic-element.css",
"sass": "scss/semantic-element.scss",
"files": [
"dist",
"scss",
"site"
],
"scripts": {
"dev": "astro dev",
"build": "sass scss/semantic-element.scss dist/semantic-element.css --style=compressed --source-map",
"build:site": "astro build",
"preview:site": "astro preview",
"prepublishOnly": "npm run build",
"lint": "npm run lint:scss",
"lint:scss": "stylelint \"scss/**/*.scss\"",
"lint:scss:fix": "stylelint \"scss/**/*.scss\" --fix",
"format": "prettier --write \"**/*.{css,scss,js,json,md,astro}\"",
"format:check": "prettier --check \"**/*.{css,scss,js,json,md,astro}\""
},
"keywords": [
"semantic",
"semantic-html",
"semantic-element",
"css",
"scss",
"framework",
"frontend",
"ui",
"styles",
"native-html"
],
"homepage": "https://semantic-element.com",
"author": "Miclle Zheng <miclle.zheng@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:miclle/semantic-element.git"
},
"bugs": {
"url": "https://github.com/miclle/semantic-element/issues"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"astro": "^5.16.6",
"eslint": "^9.39.2",
"highlight.js": "^11.11.1",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.97.1",
"stylelint": "^16.26.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1"
},
"exports": {
".": "./dist/semantic-element.css",
"./css": "./dist/semantic-element.css",
"./scss": "./scss/semantic-element.scss"
}
}