-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "ssg-api",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://javarome.com)",
"version": "1.16.10",
"description": "Static Site Generation TypeScript API",
"exports": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"engines": {
"node": ">=18"
},
"license": "MIT",
"homepage": "https://github.com/Javarome/ssg-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Javarome/ssg-api.git"
},
"scripts": {
"prebuild": "npm install",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"test": "rimraf ./out && testscript",
"test-one": "rimraf ./out && tsx src/file/HtmlFileContents.test.ts",
"test-ci": "rimraf ./out && testscript",
"prepublishOnly": "npm run build && npm run test"
},
"dependencies": {
"char-encoding-detector": "^0.0.9",
"glob": "^11.0.0",
"jsdom": "^24.1.1",
"csv-parser": "^3.0.0",
"@javarome/fileutil": "^0.3.6"
},
"devDependencies": {
"rimraf": "^6.0.1",
"@types/jsdom": "^21.1.7",
"typescript": "^5.6.3",
"tsx": "4.19.1",
"@javarome/testscript": "^0.13.1"
},
"keywords": [
"ssg",
"typescript",
"api"
],
"publishConfig": {
"access": "public"
}
}