-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (65 loc) · 1.56 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
{
"name": "@rr0/cms",
"type": "module",
"author": "Jérôme Beau <rr0@rr0.org> (https://rr0.org)",
"version": "0.3.56",
"description": "RR0 Content Management System (CMS)",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22"
},
"license": "MIT",
"homepage": "https://github.com/RR0/cms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/cms.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "npm install",
"preview": "vite preview --host",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"circular-deps": "dpdm src",
"prepublishOnly": "npm run build && npm run test-ci",
"test": "testscript",
"test-one": "rm -Rf out && tsx src/CMSGenerator.test.ts",
"test-ci": "rm -Rf out && testscript"
},
"dependencies": {
"@javarome/fileutil": "^0.3.7",
"@rr0/common": "^1.1.4",
"@rr0/data": "^0.3.39",
"@rr0/lang": "^0.1.12",
"@rr0/place": "^0.5.3",
"@rr0/time": "^0.11.2",
"canvas": "^3.2.1",
"csv-parser": "^3.2.0",
"glob": "^11.0.3",
"image-size": "^2.0.2",
"jsdom": "^27.4.0",
"selenium-webdriver": "^4.39.0",
"ssg-api": "^1.17.4"
},
"devDependencies": {
"@javarome/testscript": "^0.13.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.30",
"tsx": "4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"keywords": [
"cms",
"time",
"place",
"people",
"organization",
"event"
],
"publishConfig": {
"access": "public"
}
}