Files
notesnook/packages/theme/package.json

36 lines
894 B
JSON
Raw Permalink Normal View History

2020-07-31 15:52:16 +05:00
{
"name": "@notesnook/theme",
2023-08-01 09:32:23 +05:00
"version": "1.2.0",
2022-05-21 10:38:45 +05:00
"main": "./dist/index.js",
"license": "GPL-3.0-or-later",
2022-07-15 09:30:09 +05:00
"repository": {
"type": "git",
"url": "git://github.com/streetwriters/themeprovider.git"
},
2022-05-21 10:38:45 +05:00
"dependencies": {
"@emotion/react": "11.11.1",
"@theme-ui/color": "^0.16.0",
"@theme-ui/components": "0.14.7",
"@theme-ui/core": "0.14.7",
"tinycolor2": "^1.4.2",
"zustand": "^4.3.8"
2020-08-07 18:03:53 +05:00
},
"devDependencies": {
"@trpc/server": "^10.31.0",
"@types/react": "17.0.2",
"@types/tinycolor2": "^1.4.3",
2023-07-18 12:48:42 +05:00
"isomorphic-fetch": "^3.0.0",
"ts-json-schema-generator": "^1.2.0"
2023-01-27 20:06:51 +05:00
},
"peerDependencies": {
2023-01-28 14:11:46 +05:00
"react": "17.0.2"
2020-08-07 18:03:53 +05:00
},
2022-05-21 10:38:45 +05:00
"scripts": {
"prebuild": "node ./scripts/prebuild.mjs",
"generate": "node ./scripts/schema-generator.mjs",
2022-07-15 09:30:09 +05:00
"build": "tsc",
2023-01-28 15:27:11 +05:00
"prepublishOnly": "npm run build",
"watch": "tsc --watch"
2022-05-21 10:38:45 +05:00
}
}