-
-
Notifications
You must be signed in to change notification settings - Fork 648
/
package.json
62 lines (62 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@notesnook/theme",
"version": "2.1.3",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"license": "GPL-3.0-or-later",
"sideEffects": false,
"exports": {
".": {
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./*": {
"require": {
"types": "./dist/types/*",
"default": "./dist/cjs/*"
},
"import": {
"types": "./dist/types/*",
"default": "./dist/esm/*"
}
}
},
"repository": {
"type": "git",
"url": "git://github.com/streetwriters/themeprovider.git"
},
"devDependencies": {
"@emotion/react": "11.11.1",
"@theme-ui/color": "^0.16.1",
"@theme-ui/components": "^0.16.1",
"@theme-ui/core": "^0.16.1",
"@trpc/server": "^10.45.2",
"@types/react": "^18.2.39",
"isomorphic-fetch": "^3.0.0",
"react": "18.2.0",
"ts-json-schema-generator": "^1.2.0",
"zustand": "4.4.7"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@theme-ui/color": ">=0.16.0",
"@theme-ui/components": ">=0.16.0",
"@theme-ui/core": ">=0.16.0",
"react": ">=18",
"zustand": ">=4"
},
"scripts": {
"prebuild": "node ./scripts/prebuild.mjs",
"generate": "node ./scripts/schema-generator.mjs",
"build": "node ../../scripts/build.mjs",
"prepublishOnly": "npm run build",
"watch": "npm run build -- --watch"
}
}