-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.36 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": "vue-tabler-icons",
"version": "2.21.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alex-oleshkevich/vue-tabler-icons"
},
"scripts": {
"clean": "rm -rf ./icons ./dist",
"compile": "node build.js",
"build": "npm run clean && npm run compile",
"dist": "bili --format umd,umd-min,es,cjs --module-name VueTablerIcons --input.vue-tabler-icons index.js && cp index.d.ts dist/",
"release": "npm run build && npm run dist && npm publish"
},
"author": {
"email": "[email protected]",
"name": "Alex Oleshkevich"
},
"main": "dist/vue-tabler-icons.js",
"module": "dist/vue-tabler-icons.es.js",
"cdn": "dist/vue-tabler-icons.umd.min.js",
"unpkg": "dist/vue-tabler-icons.umd.min.js",
"jsdelivr": "dist/vue-tabler-icons.umd.min.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"icons"
],
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@tabler/icons": "^2.20.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"bili": "^5.0.5",
"fs-extra": "^10.0.0",
"pascal-case": "^3.1.2",
"vue": "^3.1"
},
"babel": {
"plugins": [
"@vue/babel-plugin-jsx"
]
}
}