CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json67 linesDownload Raw Back to css-calc
1{2	"name": "@csstools/css-calc",3	"description": "Solve CSS math expressions",4	"version": "2.1.4",5	"contributors": [6		{7			"name": "Antonio Laguna",8			"email": "antonio@laguna.es",9			"url": "https://antonio.laguna.es"10		},11		{12			"name": "Romain Menke",13			"email": "romainmenke@gmail.com"14		}15	],16	"license": "MIT",17	"funding": [18		{19			"type": "github",20			"url": "https://github.com/sponsors/csstools"21		},22		{23			"type": "opencollective",24			"url": "https://opencollective.com/csstools"25		}26	],27	"engines": {28		"node": ">=18"29	},30	"type": "module",31	"main": "dist/index.cjs",32	"module": "dist/index.mjs",33	"exports": {34		".": {35			"import": {36				"types": "./dist/index.d.ts",37				"default": "./dist/index.mjs"38			},39			"require": {40				"default": "./dist/index.cjs"41			}42		}43	},44	"files": [45		"CHANGELOG.md",46		"LICENSE.md",47		"README.md",48		"dist"49	],50	"peerDependencies": {51		"@csstools/css-parser-algorithms": "^3.0.5",52		"@csstools/css-tokenizer": "^3.0.4"53	},54	"scripts": {},55	"homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc#readme",56	"repository": {57		"type": "git",58		"url": "git+https://github.com/csstools/postcss-plugins.git",59		"directory": "packages/css-calc"60	},61	"bugs": "https://github.com/csstools/postcss-plugins/issues",62	"keywords": [63		"calc",64		"css"65	]66}67 
basant307/AI_Governance_Project · CoolFace