studylens 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,62 +1,67 @@
1
- {
2
- "name": "studylens",
3
- "version": "0.1.2",
4
- "description": "AI-powered deep study assistant — turn notes into structured knowledge",
5
- "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/cdlliuy/studygraph.git"
9
- },
10
- "keywords": [
11
- "study",
12
- "learning",
13
- "llm",
14
- "ai",
15
- "education",
16
- "knowledge"
17
- ],
18
- "main": "server/index.js",
19
- "bin": {
20
- "studylens": "./bin/studylens.js"
21
- },
22
- "files": [
23
- "server/",
24
- "core/",
25
- "config/",
26
- "portal/dist/",
27
- "portal/package.json",
28
- "bin/",
29
- "README.md"
30
- ],
31
- "scripts": {
32
- "server": "node server/index.js",
33
- "portal": "cd portal && npx vite --port 3001",
34
- "dev": "concurrently \"npm run server\" \"npm run portal\"",
35
- "start": "node server/index.js",
36
- "setup": "npm install && cd portal && npm install",
37
- "build": "cd portal && npx vite build",
38
- "prepublishOnly": "npm run build",
39
- "test:api": "npx vitest run tests/",
40
- "test:portal": "cd portal && npx vitest run",
41
- "test:e2e": "npx playwright test",
42
- "test": "npm run test:api && npm run test:portal"
43
- },
44
- "dependencies": {
45
- "cheerio": "^1.2.0",
46
- "cors": "^2.8.5",
47
- "express": "^4.21.0",
48
- "mammoth": "^1.12.0",
49
- "multer": "^1.4.5-lts.1",
50
- "pdf-parse": "^2.4.5",
51
- "uuid": "^10.0.0",
52
- "xlsx": "^0.18.5"
53
- },
54
- "devDependencies": {
55
- "@playwright/test": "^1.59.1",
56
- "@vitest/coverage-v8": "^4.1.5",
57
- "concurrently": "^9.0.0",
58
- "puppeteer": "^24.42.0",
59
- "supertest": "^7.2.2",
60
- "vitest": "^4.1.5"
61
- }
62
- }
1
+ {
2
+ "name": "studylens",
3
+ "version": "0.1.3",
4
+ "description": "AI-powered deep study assistant — turn notes into structured knowledge",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/cdlliuy/studygraph.git"
9
+ },
10
+ "keywords": [
11
+ "study",
12
+ "learning",
13
+ "llm",
14
+ "ai",
15
+ "education",
16
+ "knowledge"
17
+ ],
18
+ "main": "server/index.js",
19
+ "bin": {
20
+ "studylens": "./bin/studylens.js"
21
+ },
22
+ "files": [
23
+ "server/",
24
+ "core/extractor.js",
25
+ "core/llm-provider.js",
26
+ "core/wiki-storage.js",
27
+ "config/llm-config.template.json",
28
+ "config/prompts.json",
29
+ "portal/dist/",
30
+ "portal/package.json",
31
+ "bin/",
32
+ "README.md"
33
+ ],
34
+ "scripts": {
35
+ "server": "node server/index.js",
36
+ "portal": "cd portal && npx vite --port 3001",
37
+ "dev": "concurrently \"npm run server\" \"npm run portal\"",
38
+ "start": "node server/index.js",
39
+ "stop": "node scripts/stop-server.js",
40
+ "restart": "node scripts/stop-server.js && node server/index.js",
41
+ "postinstall": "cd portal && npm install",
42
+ "build": "cd portal && npx vite build",
43
+ "prepublishOnly": "npm run build",
44
+ "test:api": "npx vitest run tests/",
45
+ "test:portal": "cd portal && npx vitest run",
46
+ "test:e2e": "npx playwright test",
47
+ "test": "npm run test:api && npm run test:portal"
48
+ },
49
+ "dependencies": {
50
+ "cheerio": "^1.2.0",
51
+ "cors": "^2.8.5",
52
+ "express": "^4.21.0",
53
+ "mammoth": "^1.12.0",
54
+ "multer": "^1.4.5-lts.1",
55
+ "pdf-parse": "^2.4.5",
56
+ "uuid": "^10.0.0",
57
+ "xlsx": "^0.18.5"
58
+ },
59
+ "devDependencies": {
60
+ "@playwright/test": "^1.59.1",
61
+ "@vitest/coverage-v8": "^4.1.5",
62
+ "concurrently": "^9.0.0",
63
+ "puppeteer": "^24.42.0",
64
+ "supertest": "^7.2.2",
65
+ "vitest": "^4.1.5"
66
+ }
67
+ }