-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.29 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
{
"name": "learn-content-engine",
"version": "0.23.0",
"description": "Framework-agnostic TypeScript engine that parses lesson content from pluggable sources into a canonical lesson object.",
"type": "module",
"license": "MIT",
"author": "Asterios Raptis",
"repository": {
"type": "git",
"url": "git+https://github.com/astrapi69/learn-content-engine.git"
},
"homepage": "https://github.com/astrapi69/learn-content-engine#readme",
"bugs": {
"url": "https://github.com/astrapi69/learn-content-engine/issues"
},
"keywords": [
"adaptive-learner",
"content",
"lesson",
"parser",
"content-engine",
"spaced-repetition",
"typescript"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./qti": {
"types": "./dist/qti/index.d.ts",
"import": "./dist/qti/index.js"
},
"./schema/lesson.schema.json": "./schema/lesson.schema.json",
"./schema/content-manifest.schema.json": "./schema/content-manifest.schema.json",
"./schema/quality-rules.json": "./schema/quality-rules.json",
"./package.json": "./package.json"
},
"sideEffects": false,
"bin": {
"learn-content-engine": "bin/learn-content-engine.mjs"
},
"files": [
"dist",
"schema",
"bin",
"python/*.py",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"docs:api": "typedoc",
"docs:api:check": "typedoc --emit none",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@rgrove/parse-xml": "^4.2.2",
"ajv": "^8.20.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.7.0",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "^0.21.5",
"eslint": "^9.13.0",
"jsdom": "^30.0.1",
"json-schema-to-typescript": "^15.0.4",
"mermaid": "^11.16.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.0",
"typescript-eslint": "^8.63.0",
"vitest": "^2.1.0"
}
}