-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.61 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
{
"name": "claude-leaf",
"version": "1.3.0",
"description": "Claude Leaf - Productivity tools for Claude.ai including message navigation, bookmarks, emoji markers, edit version history, and more",
"type": "module",
"keywords": [
"chrome-extension",
"claude",
"productivity",
"ai",
"bookmarks",
"navigation"
],
"repository": {
"type": "git",
"url": "https://github.com/kadirkatirci/claude-leaf.git"
},
"bugs": {
"url": "https://github.com/kadirkatirci/claude-leaf/issues"
},
"homepage": "https://github.com/kadirkatirci/claude-leaf",
"author": "Kadir Katirci",
"license": "MIT",
"scripts": {
"build:css": "node scripts/build-css.mjs",
"build": "npm run build:css && rollup -c",
"package:zip": "npm run build && mkdir -p release && rm -f \"release/claude-leaf-webstore-$npm_package_version.zip\" && zip -r \"release/claude-leaf-webstore-$npm_package_version.zip\" manifest.json styles.css dist src popup icons -x \"*.DS_Store\" \"*/.DS_Store\"",
"release": "./release.sh",
"watch": "npm run build:css && rollup -c -w",
"dev": "npm run build:css && rollup -c -w",
"test": "node --test test/**/*.test.js",
"test:e2e": "npm run build && node scripts/test/run-e2e.mjs",
"test:e2e:ui": "npm run build && playwright test -c playwright.config.js --ui",
"test:e2e:live": "npm run build && node scripts/test/run-live-e2e.mjs",
"test:e2e:live:modules": "npm run build && node scripts/test/run-live-e2e.mjs --require-extension",
"test:e2e:live:deep": "npm run build && node scripts/test/run-live-e2e.mjs --require-extension test/e2e-live/live-deep-smoke.spec.js --target long",
"lint": "eslint src/ popup/ scripts/ test/ test-support/",
"lint:fix": "eslint src/ popup/ --fix",
"format": "prettier --write \"src/**/*.js\" \"popup/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"popup/**/*.js\"",
"live:refresh-profile": "node scripts/fixtures/refresh-live-profile.mjs",
"fixtures:capture": "node scripts/fixtures/capture-live-page.mjs",
"fixtures:sanitize": "node scripts/fixtures/sanitize-capture.mjs",
"fixtures:refresh": "node scripts/fixtures/refresh-fixtures.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rollup": "^4.9.6"
}
}