-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.76 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "seed-bible",
"version": "1.0.0",
"description": "The source code behind the Seed Bible.",
"type": "module",
"scripts": {
"pretest": "tsx script/pretest.ts",
"test": "jest",
"test:watch": "pnpm pretest && jest --watchAll",
"dev": "tsx script/dev.ts",
"package": "tsx script/package.ts",
"extension": "tsx script/extension.ts",
"package:seed-bible": "casualos pack-aux --overwrite ./packages/seed-bible ./dist/seed-bible.aux",
"package:playlist": "casualos pack-aux --overwrite ./packages/playlist ./dist/playlist.aux",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"pattern": "tsx script/pattern.ts",
"build": "tsx script/build.ts",
"check:aux": "tsx script/check.ts",
"check:ts": "tsc-silent --project ./tsconfig.json --suppressConfig ./tsc-silent.config.cjs",
"format": "prettier --write \"packages/**/*.{js,jsx,ts,tsx,css}\"",
"format:changed": "pretty-quick",
"prepare": "husky",
"update-ts-paths": "tsx script/updateModulePaths.ts",
"update-aux-library-definitions": "tsx script/updateAuxLibraryDefinitions.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HelloAOLab/seed-bible.git"
},
"keywords": [
"bible"
],
"author": "AO Lab <hello@helloao.org>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/HelloAOLab/seed-bible/issues"
},
"homepage": "https://github.com/HelloAOLab/seed-bible#readme",
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@casual-simulation/aux-common": "^3.7.0",
"@casual-simulation/aux-records": "^3.7.0",
"@casual-simulation/aux-runtime": "^3.7.0",
"@casual-simulation/aux-vm": "^3.7.0",
"@casual-simulation/crypto": "^3.5.0",
"@casual-simulation/fast-json-stable-stringify": "^3.5.0",
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.32.0",
"@types/jest": "30.0.0",
"@types/node": "^24.5.2",
"axios": "^1.12.2",
"babel-jest": "^30.1.2",
"casualos": "^4.2.0",
"commander": "^14.0.1",
"conf": "^15.0.2",
"esbuild": "^0.25.10",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"hash.js": "^1.1.7",
"husky": "^9.1.7",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"prompts": "^2.4.2",
"puppeteer": "^24.30.0",
"tsc-silent": "1.2.2",
"tsx": "^4.20.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"uuid": "^13.0.0",
"es-toolkit": "1.39.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"puppeteer"
],
"patchedDependencies": {
"@casual-simulation/fast-json-stable-stringify": "patches/@casual-simulation__fast-json-stable-stringify.patch"
}
},
"dependencies": {
"@tiptap/core": "^3.6.2",
"@tiptap/extension-bullet-list": "^3.6.2",
"@tiptap/extension-color": "^3.6.2",
"@tiptap/extension-highlight": "^3.6.2",
"@tiptap/extension-image": "^3.6.2",
"@tiptap/extension-link": "^3.6.2",
"@tiptap/extension-list-item": "^3.6.2",
"@tiptap/extension-ordered-list": "^3.6.2",
"@tiptap/extension-subscript": "^3.6.2",
"@tiptap/extension-superscript": "^3.6.2",
"@tiptap/extension-text-align": "^3.6.2",
"@tiptap/extension-text-style": "^3.6.2",
"@tiptap/extension-underline": "^3.6.2",
"@tiptap/starter-kit": "^3.6.2",
"debounce": "^2.2.0",
"get-tsconfig": "^4.13.0",
"html2canvas": "^1.4.1",
"imagetracerjs": "^1.2.6",
"opentype.js": "^1.3.4",
"preact-render-to-string": "^6.6.1",
"prompts": "^2.4.2",
"zod": "^4.1.13"
}
}