-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"description": "A CSS implementation of the Stellar design system.",
"devDependencies": {
"sass": "^1.60.0",
"stylelint-config-standard-scss": "^7.0.1"
},
"exports": {
".": "./dist/css/index.css",
"./css": "./dist/css/index.css",
"./css/*.css": "./dist/css/*.css",
"./font": "./dist/font/inter/inter.css",
"./font/*.css": "./dist/font/inter/*.css",
"./font/*.woff": "./dist/font/inter/*.woff",
"./font/*.woff2": "./dist/font/inter/*.woff2",
"./font/inter/*.css": "./dist/font/inter/*.css",
"./font/inter/*.woff": "./dist/font/inter/*.woff",
"./font/inter/*.woff2": "./dist/font/inter/*.woff2",
"./icons/*.svg": "./dist/icons/*.svg",
"./scss": "./dist/scss/index.scss",
"./scss/*.scss": "./dist/scss/*.scss"
},
"files": [
"dist"
],
"license": "MIT",
"name": "@nasa-jpl/stellar",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:css-only && node scripts/build.js",
"build:css-only": "rm -rf dist/css && sass src/scss:dist/css --no-source-map",
"lint": "stylelint scss/**/*.scss --fix",
"prepublishOnly": "npm run build"
},
"type": "module",
"version": "2.0.0-alpha.30",
"gitHead": "e8ce0b96712cefccff8f31d5307e96f26c19d965"
}