You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
761 B
33 lines
761 B
3 years ago
|
{
|
||
|
"name": "@emotion/memoize",
|
||
|
"version": "0.8.0",
|
||
|
"description": "emotion's memoize utility",
|
||
|
"main": "dist/emotion-memoize.cjs.js",
|
||
|
"module": "dist/emotion-memoize.esm.js",
|
||
|
"types": "types/index.d.ts",
|
||
|
"license": "MIT",
|
||
|
"repository": "https://github.com/emotion-js/emotion/tree/main/packages/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-memoize.esm.js",
|
||
|
"default": "./dist/emotion-memoize.cjs.js"
|
||
|
},
|
||
|
"./package.json": "./package.json"
|
||
|
}
|
||
|
}
|