-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@steeze-ui/lit-icon",
"version": "1.1.3",
"main": "dist/lit-icon.es.js",
"exports": {
".": {
"import": "./dist/lit-icon.es.js",
"types": "./types/index.d.ts"
}
},
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release:next": "pnpm run publish:npm -- --tag=next",
"publish:npm": "pnpm run build && pnpm publish --no-git-checks",
"release:patch": "pnpm version patch --force && pnpm publish:npm",
"release:minor": "pnpm version minor --force && pnpm publish:npm",
"release:major": "pnpm version major --force && pnpm publish:npm",
"release": "pnpm release:patch"
},
"dependencies": {
"lit": "^2.1.1"
},
"devDependencies": {
"@steeze-ui/heroicons": "^1.1.1",
"typescript": "^4.5.4",
"vite": "^2.7.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steeze-ui/icons.git",
"directory": "packages/components/svelte-icon"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"lit",
"lit-element",
"lit-html",
"icon",
"icons",
"component",
"steeze"
],
"author": "Justin Voitel <mail@justinv.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steeze-ui/icons/issues"
},
"homepage": "https://github.com/steeze-ui/icons#readme"
}