-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tacc/core-styles",
"version": "2.37.2",
"license": "MIT",
"author": "TACC COA CMD <coa-cmd@tacc.utexas.edu>",
"contributors": [
"TACC ACI WMA <wma-portals@tacc.utexas.edu>"
],
"description": "CSS source and processor for TACC Core-CMS and Core-Portal.",
"files": [
"dist",
"docs/bootstrap.md",
"fractal.config.js",
"fractal.theme.js",
"src/cli.js",
"src/bin",
"src/lib",
"src/.postcssrc.base.yml"
],
"main": "src/main.js",
"bin": "src/cli.js",
"scripts": {
"start": "fractal start --sync",
"build": "npm run build:css && npm run build:demo",
"build:css": "bin/build.js --build-id=$npm_config_build_id",
"build:tokens": "bin/build-tokens.js",
"postbuild:css": "rm -rf dist/fonts && cp -r src/lib/fonts dist/fonts",
"prebuild:demo": "rm -rf dist/_utils && cp -r src/lib/_utils dist/_utils",
"prestart": "npm run prebuild:demo",
"build:demo": "fractal build",
"test": "bin/test.js && echo \"Test output at 'dist/_tests' (compare to test input)\"",
"build:watch": "npm run build:css && touch src/lib/_imports/fractal.server.refresh.css",
"prepublishOnly": "npm run build:css",
"watch": "npm-watch"
},
"engines": {
"node": ">=15.x",
"npm": ">=7.x"
},
"homepage": "https://github.com/TACC/Core-Styles",
"repository": "git@github.com:TACC/Core-Styles.git",
"peerDependencies": {
"@csstools/postcss-design-tokens": "^4.0.1",
"commander": "^9.4.1",
"cssnano": "^5.1.15",
"js-yaml": "^4.1.0",
"merge-lite": "^1.0.2",
"node-cmd": "^5.0.0",
"postcss": "^8.4.38",
"postcss-banner": "^4.0.1",
"postcss-cli": "^10.0.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^15.0.0",
"postcss-mixins": "^10.0.1",
"postcss-preset-env": "^10.0.2",
"postcss-replace": "^2.0.1"
},
"// peerDependencies": {
"@csstools/postcss-design-tokens": "To convert design tokens to custom properties",
"commander": "To create CLI",
"cssnano": "To minify CSS",
"js-yaml": "To parse PostCSS configs",
"merge-lite": "To merge PostCSS configs",
"node-cmd": "To run PostCSS CLI from script",
"postcss": "To process CSS",
"postcss-banner": "To prepend preserved comment to built stylesheets",
"postcss-cli": "To process CSS (the simplest and cheapest PostCSS runner)",
"postcss-import": "To import CSS files at build-time",
"postcss-extend": "(DEPRECATED) To extend CSS rule sets at build-time",
"postcss-preset-env": "To use future CSS features now",
"// postcss-preset-env": "Using bleeding edge because https://github.com/csstools/postcss-plugins/issues/481#issuecomment-1334903391",
"postcss-replace": "To edit relative paths to fonts"
},
"devDependencies": {
"@frctl/fractal": "^1.5.15",
"@frctl/handlebars": "^1.2.15",
"@frctl/mandelbrot": "^1.10.1",
"minimist": "^1.2.7",
"npm-watch": "^0.13.0"
},
"watch": {
"build:watch": {
"patterns": "src/**/*",
"extensions": "css,json",
"ignore": [
"fractal.server.refresh.css",
"tokens/*.json"
]
}
}
}