CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json52 linesDownload Raw Back to configstore
1{2	"name": "configstore",3	"version": "7.0.0",4	"description": "Easily load and save config without having to think about where and how",5	"license": "BSD-2-Clause",6	"repository": "yeoman/configstore",7	"funding": "https://github.com/yeoman/configstore?sponsor=1",8	"author": {9		"name": "Sindre Sorhus",10		"email": "sindresorhus@gmail.com",11		"url": "https://sindresorhus.com"12	},13	"type": "module",14	"exports": "./index.js",15	"sideEffects": false,16	"engines": {17		"node": ">=18"18	},19	"scripts": {20		"test": "xo && ava"21	},22	"files": [23		"index.js"24	],25	"keywords": [26		"config",27		"store",28		"storage",29		"configuration",30		"settings",31		"preferences",32		"json",33		"data",34		"persist",35		"persistent",36		"save"37	],38	"dependencies": {39		"atomically": "^2.0.3",40		"dot-prop": "^9.0.0",41		"graceful-fs": "^4.2.11",42		"xdg-basedir": "^5.1.0"43	},44	"devDependencies": {45		"ava": "^6.1.3",46		"xo": "^0.58.0"47	},48	"ava": {49		"serial": true50	}51}52