-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "@iconify/json",
"description": "Hundreds of open source icon sets in IconifyJSON format",
"license": "MIT",
"version": "2.2.455",
"type": "module",
"homepage": "https://iconify.design/icon-sets/",
"bugs": "https://github.com/iconify/icon-sets/issues",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/iconify/icon-sets.git"
},
"exports": {
"./*": "./*",
"./dist": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./dist/index": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"json",
"lib",
"collections.json",
"collections.md",
"composer.json",
"readme.md"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && unbuild",
"test:cjs": "vitest --config vitest.config.cjs",
"test:esm": "vitest --config vitest.config.mjs",
"test": "npm run test:cjs && npm run test:esm",
"version": "node sync-version.cjs",
"prepublishOnly": "npm run build && npm run version"
},
"dependencies": {
"@iconify/types": "*",
"pathe": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.11.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"rimraf": "^6.1.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.0"
}
}