-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.5 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.5 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "roamjs-components",
"description": "Expansive toolset, utilities, & components for developing RoamJS extensions.",
"version": "0.87.0",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"postinstall": "patch-package",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "eslint . --ext .ts,.tsx",
"build": "tsc",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"test": "playwright test",
"start": "samepage dev"
},
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RoamJS/roamjs-components"
},
"peerDependencies": {
"@blueprintjs/core": "3.50.4",
"@blueprintjs/datetime": "3.23.14",
"@blueprintjs/select": "3.18.6",
"@types/crypto-js": "4.1.1",
"@types/cytoscape": "^3.19.9",
"@types/file-saver": "2.0.5",
"@types/jsdom": "^20.0.1",
"@types/marked": "^4.0.3",
"@types/nanoid": "2.0.0",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.13",
"@types/use-sync-external-store": "^0.0.3",
"chrono-node": "2.3.0",
"crypto-js": "3.1.9-1",
"cytoscape": "^3.21.0",
"file-saver": "2.0.2",
"idb": "6.0.0",
"insect": "^5.6.0",
"jsdom": "^20.0.3",
"jszip": "3.10.0",
"marked": "4.0.16",
"marked-react": "1.1.2",
"nanoid": "2.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"tslib": "2.2.0",
"use-sync-external-store": "^1.2.0"
},
"dependencies": {
"@samepage/scripts": "^0.74.2",
"color": "^4.0.1",
"date-fns": "^2.27.0",
"edn-data": "^1.0.0",
"fuzzy": "^0.1.3",
"hast-util-to-html": "^7.1.3",
"refractor": "^3.3.1",
"xregexp": "^5.0.1"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/aws-lambda": "^8.10.89",
"@types/color": "^3.0.2",
"@types/mime-types": "^2.1.1",
"@types/refractor": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.4.0",
"http-server": "^14.1.1",
"prettier": "^2.3.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react-hooks": "^2.2.2"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"bin": {
"roamjs": "./scripts/index.js"
},
"overrides": {
"@testing-library/react": {
"react": "17.0.2",
"react-dom": "17.0.2"
}
},
"samepage": {
"external": [
"react-dom/client",
"@blueprintjs/core=window.Blueprint.Core",
"@blueprintjs/datetime=window.Blueprint.DateTime",
"@blueprintjs/select=window.Blueprint.Select",
"chrono-node=window.ChronoNode",
"crypto-js=window.CryptoJS",
"cytoscape=window.RoamLazy.Cytoscape",
"file-saver=window.FileSaver",
"jszip=window.RoamLazy.JSZip",
"idb=window.idb",
"insect=window.RoamLazy.Insect",
"marked=window.RoamLazy.Marked",
"marked-react=window.RoamLazy.MarkedReact",
"nanoid=window.Nanoid;module.exports.nanoid=window.Nanoid",
"react=window.React;module.exports.useSyncExternalStore=require(\"use-sync-external-store/shim\").useSyncExternalStore",
"react/jsx-runtime=./node_modules/react/jsx-runtime.js",
"react-dom=window.ReactDOM",
"react-youtube=window.ReactYoutube",
"tslib=window.TSLib"
],
"include": [
"package.json",
"README.md"
],
"out": "extension",
"mirror": ".",
"format": "esm",
"review": "node_modules/roamjs-components/scripts/publishToRoamDepot.js"
}
}