-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "@iconify/json",
"description": "Hundreds of open source icon sets in IconifyJSON format",
"license": "MIT",
"version": "2.2.287",
"type": "module",
"homepage": "https://iconify.design/icon-sets/",
"bugs": "https://github.com/iconify/icon-sets/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/iconify/icon-sets.git"
},
"exports": {
"./*": "./*",
"./dist": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./dist/index": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"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": "^1.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.16.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
}
}