34 lines
863 B
JSON
34 lines
863 B
JSON
{
|
|
"name": "@emotion/weak-memoize",
|
|
"version": "0.3.1",
|
|
"description": "A memoization function that uses a WeakMap",
|
|
"main": "dist/emotion-weak-memoize.cjs.js",
|
|
"module": "dist/emotion-weak-memoize.esm.js",
|
|
"types": "types/index.d.ts",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/emotion-js/emotion/tree/main/packages/weak-memoize",
|
|
"scripts": {
|
|
"test:typescript": "dtslint types"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@definitelytyped/dtslint": "0.0.112",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"types/*.d.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"module": "./dist/emotion-weak-memoize.esm.js",
|
|
"import": "./dist/emotion-weak-memoize.cjs.mjs",
|
|
"default": "./dist/emotion-weak-memoize.cjs.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
}
|
|
}
|