CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json42 linesDownload Raw Back to is-plain-obj
1{2	"name": "is-plain-obj",3	"version": "4.1.0",4	"description": "Check if a value is a plain object",5	"license": "MIT",6	"repository": "sindresorhus/is-plain-obj",7	"funding": "https://github.com/sponsors/sindresorhus",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	"engines": {16		"node": ">=12"17	},18	"scripts": {19		"test": "xo && ava && tsd"20	},21	"files": [22		"index.js",23		"index.d.ts"24	],25	"keywords": [26		"object",27		"is",28		"check",29		"test",30		"type",31		"plain",32		"vanilla",33		"pure",34		"simple"35	],36	"devDependencies": {37		"ava": "^3.15.0",38		"tsd": "^0.14.0",39		"xo": "^0.38.2"40	}41}42