-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 KB
/
package.json
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
{
"name": "@rr0/cms",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://rr0.org)",
"version": "0.3.21",
"description": "RR0 Content Management System (CMS)",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"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",
"prepublishOnly": "npm run build",
"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.3",
"@rr0/data": "^0.3.23",
"@rr0/lang": "^0.1.12",
"@rr0/place": "^0.5.3",
"@rr0/time": "^0.11.0",
"canvas": "^3.1.0",
"csv-parser": "^3.2.0",
"glob": "^11.0.1",
"image-size": "^2.0.0",
"jsdom": "^26.0.0",
"selenium-webdriver": "^4.29.0",
"ssg-api": "^1.16.15"
},
"devDependencies": {
"@javarome/testscript": "^0.13.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.5",
"tsx": "4.19.3",
"typescript": "^5.7.3",
"vite": "^6.2.0"
},
"keywords": [
"cms",
"time",
"place",
"people",
"organization",
"event"
],
"publishConfig": {
"access": "public"
}
}