-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"name": "noutious",
"type": "module",
"version": "0.0.1-alpha.8",
"packageManager": "pnpm@10.0.0",
"description": "A simple file-based content manage system driven by Node.js.",
"license": "MIT",
"homepage": "https://github.com/s-complex/noutious",
"repository": {
"type": "git",
"url": "https://github.com/s-complex/noutious.git"
},
"keywords": [
"cms"
],
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"main": "./dist",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "unbuild --minify",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run"
},
"dependencies": {
"consola": "^3.3.3",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"pathe": "^2.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-plugin-format": "^1.0.1",
"tinyglobby": "^0.2.10",
"typescript": "^5.7.2",
"unbuild": "^3.3.1",
"vitest": "^2.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}