forked from fabric-ds/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.23 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
{
"name": "@fabric-ds/elements",
"type": "module",
"version": "0.0.2",
"description": "Custom elements for Fabric",
"exports": {
".": "./dist/index.js",
"./toast": "./dist/api.js"
},
"module": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"scripts": {
"build:api": "npx esbuild ./packages/toast/api.js --outdir=dist --target=es2017 --bundle --sourcemap --format=esm --minify",
"build:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2017 --bundle --sourcemap --format=esm --minify",
"build": "rimraf dist && tsc && npm run build:npm && npm run build:api",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "npm run lint:format && npm run lint:eslint",
"lint:format": "prettier --check . --ignore-path .gitignore",
"lint:eslint": "eslint . --ext js,cjs,mjs --ignore-path .gitignore",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build:docs": "vite build && cp CNAME site",
"eik:login": "npx @eik/cli login",
"eik:publish": "npx @eik/cli publish",
"posteik:publish": "npm run eik:alias",
"eik:alias": "npx @eik/cli pkg-alias"
},
"repository": {
"type": "git",
"url": "git@github.com:fabric-ds/elements.git"
},
"license": "ISC",
"devDependencies": {
"@fabric-ds/tailwind-config": "^0.5.20",
"@stylelint/postcss-css-in-js": "^0.37.2",
"autoprefixer": "^10.2.3",
"babel-eslint": "^10.1.0",
"esbuild": "^0.12.0",
"eslint": "^7.18.0",
"lerna": "^3.22.1",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-discard-comments": "^4.0.2",
"postcss-discard-empty": "^4.0.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.2",
"vite": "^2.0.0-beta.56",
"vite-plugin-html": "^2.0.0-beta.6",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"@chbphone55/classnames": "^2.0.0",
"@fabric-ds/component-classes": "^0.0.31",
"element-collapse": "^0.9.1",
"microbundle": "^0.13.3",
"typescript": "^4.3.5"
},
"dependencies": {
"html-format": "^1.0.1"
},
"publishConfig": {
"access": "public"
},
"eik": {
"server": "https://assets.finn.no",
"files": "dist"
}
}