add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

28
node_modules/@emotion/hash/package.json generated vendored Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "@emotion/hash",
"version": "0.8.0",
"description": "A MurmurHash2 implementation",
"main": "dist/hash.cjs.js",
"module": "dist/hash.esm.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": "https://github.com/emotion-js/emotion/tree/master/packages/hash",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"types"
],
"scripts": {
"test:typescript": "dtslint types"
},
"devDependencies": {
"dtslint": "^0.3.0"
},
"browser": {
"./dist/hash.cjs.js": "./dist/hash.browser.cjs.js",
"./dist/hash.esm.js": "./dist/hash.browser.esm.js"
}
}