-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.17 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@tomjs/vite-plugin-iconify",
"version": "1.4.0",
"packageManager": "pnpm@10.11.0",
"description": "A Vite plugin for handling iconify icon sets in environments without internet access.",
"author": {
"name": "tom",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomjs/vite-plugin-iconify.git"
},
"keywords": [
"vite",
"plugin",
"vite-plugin",
"front-end",
"vue",
"react",
"html",
"iconify"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"ti": "./dist/cli.mjs"
},
"files": [
"*.md",
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "tsup",
"build": "tsup",
"lint": "run-s lint:stylelint lint:eslint",
"lint:stylelint": "stylelint \"examples/**/*.{vue,css,less,html}\" --fix --cache",
"lint:eslint": "eslint --fix",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"@iconify/json": "*",
"vite": ">=2"
},
"dependencies": {
"cac": "^6.7.14",
"fs-extra": "^11.3.0",
"lodash.clonedeep": "^4.5.0",
"node-html-parser": "^6.1.13",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@iconify/types": "^2.0.0",
"@tomjs/commitlint": "^4.0.0",
"@tomjs/eslint": "^5.2.0",
"@tomjs/stylelint": "^6.0.0",
"@tomjs/tsconfig": "^2.0.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^18.19.103",
"eslint": "^9.27.0",
"lint-staged": "^15.2.0",
"np": "^9.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.13.0",
"stylelint": "^16.19.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}