2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-19 18:39:01 +00:00
iconify-collections-json/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "@iconify/json",
2021-09-18 11:37:45 +00:00
"description": "Iconify icons collection in JSON format",
"license": "MIT",
2023-05-06 05:08:27 +00:00
"version": "2.2.61",
"type": "module",
2021-09-18 11:37:45 +00:00
"homepage": "https://iconify.design/icon-sets/",
"bugs": "https://github.com/iconify/icon-sets/issues",
2019-01-22 09:40:59 +00:00
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/iconify/icon-sets.git"
2021-09-13 15:57:27 +00:00
},
2021-09-18 11:37:45 +00:00
"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"
},
2021-09-18 11:37:45 +00:00
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
2021-09-18 11:37:45 +00:00
}
},
"files": [
2021-09-13 15:57:27 +00:00
"dist",
"json",
"lib",
"collections.json",
"collections.md",
"composer.json",
2021-09-13 15:57:27 +00:00
"readme.md"
],
"main": "dist/index.cjs",
2021-09-16 13:33:04 +00:00
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
2021-09-13 15:57:27 +00:00
"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",
2023-01-01 20:17:18 +00:00
"version": "node sync-version.cjs",
"prepublishOnly": "npm run build && npm run version"
2021-09-13 15:57:27 +00:00
},
"dependencies": {
2022-06-26 08:25:31 +00:00
"@iconify/types": "*",
"pathe": "^1.0.0"
2021-09-13 15:57:27 +00:00
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"unbuild": "^1.0.2",
"vitest": "^0.26.3"
2019-01-22 09:40:59 +00:00
}
2023-01-02 14:16:13 +00:00
}