-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "collaborative_tasks",
"version": "0.0.3",
"fluxplugin": {
"name": "Collaborative Tasks",
"description": "Simple collaborative task list",
"icon": "list-check"
},
"keywords": [
"flux-plugin",
"ad4m-view"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@fluxapp/api": "*",
"@fluxapp/comment-section": "^0.5.33",
"@fluxapp/flux-container": "*",
"@fluxapp/react-web": "*",
"@perspect3vism/ad4m": "0.5.1",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"preact": "^10.13.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@preact/preset-vite": "^2.5.0",
"vite": "^4.3.5",
"vite-plugin-css-injected-by-js": "^3.1.0"
}
}