-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
{
"name": "outlinecss",
"description": "A headless, responsive, and composable CSS framework designed for easy customization.",
"version": "0.0.5",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"outlinecss": "bin/run"
},
"scripts": {
"serve:website": "npx webanvil serve --base /outlinecss/",
"build": "npm run build:library && npm run build:website",
"build:library": "npm run clean && tsc --build && npx outlinecss build --output ./dist/outline.css --entry null --tokens null",
"build:short": "npx outlinecss build --output ./dist/outline.css --entry null --tokens null",
"build:website": "npx webanvil",
"clean": "tsc --build --clean",
"preprepare": "ts-patch install",
"prepack": "npm run build"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"cssnano": "^7.0.6",
"minimist": "^1.2.8",
"outlinecss": "^0.0.3",
"postcss": "^8.5.1",
"postcss-font-magician": "^4.0.0",
"postcss-preset-env": "^10.1.3",
"sass": "^1.84.0"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.4.0",
"ejs": "^3.1.10",
"ts-patch": "^3.2.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.4.11",
"webanvil": "^0.0.6"
},
"author": "Mateusz Pietrzak",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mzpkdev/outlinecss.git"
},
"files": [
"bin/",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"tokens/**/*.js",
"tokens/**/*.d.ts",
"tokens/**/*.d.ts.map",
"styles/",
"README.md",
"LICENSE"
],
"keywords": [
"css",
"css-framework",
"headless",
"responsive",
"composable",
"customizable",
"ui-primitives",
"utility-classes",
"css-utilities",
"unstyled-components",
"css-architecture",
"design-system",
"modular-css"
]
}