-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "sumi-style",
"version": "0.0.0",
"description": "Style for the Sumi project.",
"keywords": [
"css"
],
"homepage": "https://git.omnifi.foundation/sumi-style",
"author": "フィリップ",
"license": "MIT",
"repository": "https://git.omnifi.foundation/sumi-style.git",
"files": [
"build",
"lib",
"fonts",
"src"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"sumi-icons": "git+ssh://[email protected]/OmnifiFoundation/sumi-icons.git"
},
"devDependencies": {
"@csstools/normalize.css": "^12.0.0",
"browser-sync": "^2.27.10",
"cssnano": "^5.1.14",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.8.3"
},
"scripts": {
"build": "npm run raw && npm run ci && npm run compat",
"clean": "rm -rf lib",
"ci": "npx postcss src/*.css --config ./build --dir lib --ext 'min.css' --no-map --env production",
"compat": "npx postcss src/*.css --config ./build --dir lib --ext 'compat.css' --no-map --env compat",
"demo": "browser-sync start --server --files 'demo/*.html, lib/*.css'",
"dev": "npx postcss src/*.css --config ./build --dir lib --no-map --env development -w",
"raw": "npx postcss src/*.css --config ./build --dir lib --no-map --env development"
},
"style": "dist/sumi.min.css",
"sumiConfig": {
"prefix": "sumi__"
}
}