-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.78 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
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
121
122
123
124
125
{
"name": "lore-selfie",
"displayName": "lore selfie",
"version": "0.0.7",
"description": "A lore selfie",
"author": "Robin de Mourat <[email protected]>",
"homepage": "https://github.com/medialab/lore-selfie",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"debug": "plasmo dev --verbose",
"debug:firefox": "plasmo dev --target=firefox-mv2 --verbose",
"prettier": "prettier . --write",
"lint": "eslint '*.ts' '*.tsx' '**/*.ts' '**/*.tsx' '**/**/*.ts' '**/**/*.tsx'",
"lint:fix": "eslint '*.ts' '*.tsx' '**/*.ts' '**/*.tsx' '**/**/*.ts' '**/**/*.tsx' --fix",
"build": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv2",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv2",
"start": "web-ext run --source-dir ./build/chrome-mv3-dev -t chromium --start-url chrome://newtab",
"start:firefox": "web-ext run --source-dir ./build/firefox-mv2-dev",
"prepare": "husky",
"pre-commit": "lint-staged",
"generate-json-schemas": "typescript-json-schema types/io.ts AllData -o schemas/all-data.json --refs; prettier schemas/all-data.json --write;ajv compile -s schemas/all-data.json -o schemas/validateDataDump.js --all-errors -c ajv-formats"
},
"dependencies": {
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.13.0",
"@react-sigma/core": "^4.0.3",
"@react-sigma/layout-forceatlas2": "^4.0.3",
"@types/d3-scale": "^4.0.8",
"@uuid-ts/uuid": "^1.0.1",
"@vaadin/time-picker": "^24.5.5",
"ajv-formats": "^3.0.1",
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"graphology": "^0.25.4",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-types": "^0.24.8",
"install": "^0.13.0",
"plasmo": "0.89.4",
"rc-slider": "^11.1.7",
"react": "18.2.0",
"react-code-blocks": "^0.1.6",
"react-dom": "18.2.0",
"react-file-drop": "^3.1.6",
"react-icons": "^5.4.0",
"react-measure": "^2.5.2",
"react-router-dom": "^7.0.2",
"react-select": "^5.9.0",
"react-textarea-autosize": "^8.5.6",
"react-tooltip": "^5.28.0",
"scheduler": "^0.25.0",
"sigma": "^3.0.0",
"svg-partial-circle": "^1.0.0",
"talisman": "^1.1.4",
"use-debounce": "^10.0.4",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "19.0.7",
"@types/react-dom": "18.2.18",
"ajv": "^8.17.1",
"ajv-cli": "^5.0.0",
"d3-dsv": "^3.0.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"fs-extra": "^11.2.0",
"git-format-staged": "^3.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": ">=10",
"prettier": "3.2.4",
"prettier-eslint-cli": "^8.0.1",
"typescript": "5.3.3",
"typescript-eslint": "^8.20.0",
"typescript-json-schema": "^0.65.1",
"uuid": "^9.0.1",
"voynich-ipsum": "^1.2.0",
"web-ext": "^8.3.0"
},
"overrides": {
"@types/scheduler": "< 0.23.0"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"permissions": [
"scripting",
"storage",
"activeTab",
"unlimitedStorage"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"tabs/dev-dashboard.html",
"tabs/app.html"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}