-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.62 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
{
"name": "codeledger",
"version": "1.9.1",
"displayName": "CodeLedger",
"description": "Your DSA journey, committed. Track and commit all your solved DSA problems to GitHub automatically.",
"author": "VKrishna04",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Life-Experimentalist/Code-Ledger.git"
},
"homepage": "https://codeledger.vkrishna04.me/",
"bugs": {
"url": "https://github.com/Life-Experimentalist/Code-Ledger/issues"
},
"keywords": [
"leetcode",
"geeksforgeeks",
"codeforces",
"dsa",
"competitive-programming",
"browser-extension",
"chrome-extension",
"firefox-addon",
"github",
"git",
"automation",
"manifest-v3",
"ai-code-review",
"analytics",
"knowledge-graph"
],
"packageManager": "npm@24.15.10",
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"private": true,
"type": "module",
"scripts": {
"help": "node dev/help.js",
"dev": "node dev/run-dev.js",
"build:css": "npx @tailwindcss/cli -i src/index.css -o src/ui/styles/compiled.css --minify",
"build:dist": "node dev/build.js",
"build:fast": "node dev/build.js --skip-css",
"build": "node dev/v2/cli.js build",
"watch": "node dev/watch.js",
"clean": "node dev/clean.js",
"package": "node dev/v2/cli.js publish",
"package:chrome": "node dev/v2/cli.js publish",
"package:firefox": "node dev/v2/cli.js publish",
"publish": "node dev/v2/cli.js publish",
"format": "npx prettier --write \"src/**/*.js\" \"dev/**/*.js\" \"worker/src/**/*.js\" \"worker/public/**/*.{js,css,html,json,webmanifest}\"",
"release": "node dev/v2/cli.js release",
"test:sync-regression": "node dev/test-sync-regression.js",
"lint": "node dev/typecheck.js",
"sync:manifests": "node dev/sync-manifests.js",
"sync:party": "node dev/sync-party-module.js",
"domains:update": "node dev/generate-manifest-domains.js",
"validate:openapi": "node dev/validate-openapi.js",
"deploy:worker": "cd worker && npx wrangler deploy",
"format:check": "npx prettier --check \"src/**/*.js\" \"dev/**/*.js\" \"worker/src/**/*.js\" \"worker/public/**/*.{js,css,html,json,webmanifest}\"",
"emoji:scan": "node dev/emoji-tools.js scan",
"emoji:repair": "node dev/emoji-tools.js repair",
"vendor:preact": "node dev/generate-preact-vendor.js",
"vendor:vis": "node dev/generate-vis-vendor.js",
"vendor:chart": "node dev/generate-chart-bundle.js",
"vendor:chart-source": "node dev/generate-chart-vendor.js",
"vendor:refresh-script": "node dev/generate-refresh-script.js",
"test": "node --test --test-reporter=spec \"test/**/*.test.js\" \"worker/test/**/*.test.js\"",
"test:watch": "node --test --watch --test-reporter=spec \"test/**/*.test.js\" \"worker/test/**/*.test.js\"",
"lint:all": "tsc --noEmit --checkJs"
},
"//dependencies": "Only what a build step actually reads. There is no bundler, so nothing here ships to the browser: chart.js, preact and htm are inputs to the esbuild runs that produce the committed files in src/vendor/, and they are the reason the vendoring is reproducible rather than a copy-paste.",
"dependencies": {
"chart.js": "^4.4.8",
"htm": "^3.1.1",
"preact": "^10.29.8",
"vis-data": "8.0.5",
"vis-network": "10.1.1"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.3",
"@types/chrome": "^0.0.308",
"@types/node": "^22.13.10",
"adm-zip": "0.6.0",
"esbuild": "0.28.1",
"js-yaml": "^4.1.0",
"octokit": "^4.0.0",
"prettier": "^3.8.3",
"puppeteer": "25.10.0",
"typescript": "^5.8.2",
"wrangler": "^4.85.0"
}
}