mirror of
https://github.com/iconify/collections-json.git
synced 2024-11-09 23:00:55 +00:00
59 lines
1.8 KiB
JSON
59 lines
1.8 KiB
JSON
{
|
|
"name": "@iconify/json",
|
|
"description": "Iconify icons collection in JSON format",
|
|
"license": "MIT",
|
|
"version": "2.1.18",
|
|
"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": {
|
|
"./*": "./*",
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"json",
|
|
"lib",
|
|
"collections.json",
|
|
"collections.md",
|
|
"composer.json",
|
|
"readme.md"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "rimraf dist && tsup src/index.ts --format cjs,esm --dts",
|
|
"test-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.esm.config.ts",
|
|
"test-cjs": "npm run build && jest --clearCache && jest --config=jest.cjs.config.ts",
|
|
"test-locate-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.esm.config.ts src/locate.esm.test.ts -i",
|
|
"test-locate-cjs": "npm run build && jest --clearCache && jest --config=jest.cjs.config.ts src/locate.cjs.test.ts -i",
|
|
"test": "npm run test-esm && npm run test-cjs && npm run test-locate-esm && npm run test-locate-cjs",
|
|
"version": "node sync-version",
|
|
"prepublishOnly": "npm run build && npm run version"
|
|
},
|
|
"dependencies": {
|
|
"@iconify/types": "^1.0.9",
|
|
"pathe": "^0.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.12",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.1",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.7.0",
|
|
"esno": "^0.14.0",
|
|
"jest": "^27.4.7",
|
|
"jest-each": "^27.4.6",
|
|
"ts-jest": "^27.1.3",
|
|
"ts-node": "^10.4.0",
|
|
"tsup": "^5.11.11",
|
|
"typescript": "^4.5.5"
|
|
}
|
|
} |