-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.9 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@fabric-ds/css",
"description": "Fabric CSS core components and utilities",
"version": "1.2.0",
"files": [
"dist",
"src"
],
"type": "module",
"style": "dist/fabric.min.css",
"exports": {
".": "./dist/fabric.min.css",
"./tailwind-config": "./src/utils/tailwind/tailwind.config.js",
"./component-classes": "./src/utils/component-classes/index.js",
"./component-classes/list.js": "./src/utils/component-classes/list.js",
"./base.css": "./src/base.css",
"./components.css": "./src/components.css",
"./utilities.css": "./src/utilities.css",
"./theme.css": "./src/theme.css",
"./colors.js": "./src/utils/tailwind/colors.js"
},
"typesVersions": {
"*": {
"./component-classes": [
"src/utils/component-classes/index.d.ts"
]
}
},
"scripts": {
"eik:login": "npx @eik/cli login",
"eik:publish": "npx @eik/cli publish",
"eik:alias": "eik package-alias @fabric-ds/css",
"build": "node build.js && tsc",
"postbuild": "./src/scripts/replaceTailwindVariables.mjs && ./src/scripts/reportSizes.mjs",
"dev": "vite",
"docs": "vite build && cp CNAME site",
"docs:deploy": "npm run docs && gh-pages -d site",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "prettier --check . --ignore-path .gitignore",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/fabric-ds/css.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@eik/cli": "^2.0.0-next.6",
"@fabric-ds/icons": "^0.6.0",
"@fabric-ds/tailwind-config": "^0.5.32",
"@finn-no/browserslist-config": "^3.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"autoprefixer": "^10.1.0",
"brotli-size": "^4.0.0",
"cssnano": "^5.0.8",
"cz-conventional-changelog": "^3.3.0",
"drnm": "^0.9.0",
"filesize": "^8.0.3",
"gh-pages": "^3.1.0",
"glob": "^7.1.6",
"html-format": "^1.0.1",
"lit-element": "^3.0.0",
"postcss": "^8.2.6",
"postcss-cli": "^9.0.1",
"postcss-import": "^14.0.0",
"postcss-import-svg": "^1.0.4",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.2.1",
"pretty-bytes": "^5.5.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"semantic-release-slack-bot": "^3.5.2",
"tailwindcss": "^2.0.3",
"typescript": "^4.6.3",
"vite": "^2.6.2",
"vite-plugin-html": "^2.0.0-rc.3"
},
"eik": {
"server": "https://assets.finn.no",
"files": {
"fabric.min.css": "./dist/fabric.min.css"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"gitHead": "7b7391f45aa2c2256f0ca89ff2d5133ec34bda9c",
"dependencies": {
"lit-html": "^2.2.3"
}
}