forked from gravity-ui/icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@64mb/gravity-ui-icons-vue",
"version": "2.9.1",
"description": "Pack of Gravity UI icons for Vue",
"keywords": [
"icons",
"icon",
"svg",
"vue"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./global": {
"types": "./dist/types/global.d.ts",
"require": "./dist/global.cjs",
"import": "./dist/global.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./*",
"./dist/types/*"
]
}
},
"sideEffects": false,
"unpkg": "dist/index.iife.min.js",
"jsdelivr": "dist/index.iife.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/64mb/gravity-ui-icons-vue.git"
},
"author": "64mb <[email protected]> (https://github.com/64mb)",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/64mb/gravity-ui-icons-vue",
"scripts": {
"build": "npm run build:generate && npm run build:build && npm run build:types",
"build:generate": "tsx vue/build/generate.ts",
"build:build": "NODE_ENV=production tsx vue/build/build.ts",
"build:types": "vue-tsc --declaration --emitDeclarationOnly"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@types/prettier": "^3.0.0",
"camelcase": "^8.0.0",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"esbuild": "^0.19.8",
"esbuild-plugin-globals": "^0.2.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.1.1",
"tsx": "^4.5.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"unplugin-vue": "^4.5.0",
"vue": "^3.3.9",
"vue-tsc": "^1.8.22"
}
}