-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.77 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": "@plannotator/app-notes",
"description": "A local-first browser extension for annotating elements on any web page.",
"private": true,
"version": "0.1.0",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Michael Ramos",
"url": "https://github.com/backnotprop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plannotator/app-notes.git"
},
"bugs": {
"url": "https://github.com/plannotator/app-notes/issues"
},
"homepage": "https://github.com/plannotator/app-notes#readme",
"type": "module",
"scripts": {
"test": "bun test",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"build:safari": "wxt build -b safari",
"package:safari": "bun run build:safari && xcrun safari-web-extension-packager .output/safari-mv2 --project-location .output/safari-project --app-name 'App Notes' --bundle-identifier ai.plannotator.App-Notes --macos-only --copy-resources --no-open --no-prompt --force",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"release:verify": "bun test && bun run compile && bun run build && bun run build:firefox && bun run build:safari",
"release:package": "bun run zip && bun run zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.2",
"lucide-react": "^1.24.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.3.2"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@wxt-dev/module-react": "^1.1.5",
"fake-indexeddb": "^6.2.5",
"linkedom": "^0.18.13",
"typescript": "^5.9.3",
"wxt": "^0.20.27"
}
}