-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
46 lines (46 loc) · 1.29 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": "@umbraco-ui/uui-css",
"version": "1.11.0",
"license": "MIT",
"keywords": [
"Umbraco",
"Custom elements",
"Web components",
"UI",
"Lit",
"Css"
],
"description": "Umbraco UI css component",
"repository": {
"type": "git",
"url": "https://github.com/umbraco/Umbraco.UI.git",
"directory": "packages/uui-css"
},
"bugs": {
"url": "https://github.com/umbraco/Umbraco.UI/issues"
},
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"files": [
"assets",
"dist",
"lib/**/*.d.ts",
"lib/**/*.js"
],
"peerDependencies": {
"lit": ">=2.8.0"
},
"scripts": {
"build": "npm run build:cssprops && tsc --build && rollup -c rollup.config.js",
"build:cssprops": "postcss lib/custom-properties.css --base lib/ --dir dist && npm run custom-properties-cache",
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json custom-properties.*",
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json",
"custom-properties-cache": "node ./scripts/update-custom-properties-cache.js"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://uui.umbraco.com/?path=/story/uui-css"
}