-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 2.91 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
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
{
"name": "@plus1tv/foil-cli",
"version": "1.0.0-alpha.32",
"description": "✨ A sparkly shiny portfolio indexing system. Convert blog posts, art, music, etc. into database entries that you can traverse and search through.",
"repository": {
"type": "git",
"url": "git+https://github.com/plus1tv/foil.git"
},
"author": "Alain Galvan <[email protected]>",
"license": "MIT",
"type": "module",
"typings": "dist/src/cli.d.ts",
"types": "dist/foil-cli.d.ts",
"source": "src/foil-cli.js",
"main": "dist/foil-cli.js",
"module": "dist/foil-cli.js",
"unpkg": "dist/foil-cli.umd.js",
"exports": "./dist/foil-cli.modern.js",
"bin": {
"foil-cli": "dist/foil-cli.js"
},
"engines": {
"node": ">=16"
},
"ava": {
"verbose": true,
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"files": [
"tests/**/*.test.ts"
]
},
"scripts": {
"start": "npm run build",
"build": "cross-env NODE_ENV=production microbundle ./src/cli.ts --compress --target node --generateTypes",
"develop": "cross-env NODE_ENV=development microbundle ./src/cli.ts --target node --generateTypes",
"test": "c8 ava",
"lint": "eslint ./src/**/*.ts",
"prettier": "prettier --config .prettierrc --write \"src/**/*.{ts,tsx,js,json}\"",
"coverage:local": "nyc npm test && nyc report",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/estree": "^1.0.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-redux": "^7.1.25",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/rss": "^0.0.30",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"ava": "^5.1.1",
"c8": "^7.12.0",
"clean-webpack-plugin": "^4.0.0",
"codecov": "^3.8.x",
"coveralls": "^3.1.x",
"eslint": "^8.33.x",
"lint-staged": "^13.1.x",
"microbundle": "^0.15.1",
"nyc": "^15.1.x",
"prettier": "^2.8.x",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"dependencies": {
"@mdx-js/loader": "^2.2.1",
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"chalk": "5.2.0",
"cross-env": "^7.0.3",
"dependency-tree": "^9.0.0",
"feed": "^4.2.2",
"file-loader": "^6.2.0",
"find": "^0.3.0",
"glob-to-regexp": "^0.4.1",
"highlight.js": "^11.7.0",
"id3js": "^2.1.1",
"markademic": "^0.20.1",
"mdast": "^3.0.0",
"mdast-util-mdx": "^2.0.1",
"mongodb": "^5.0.0",
"path-browserify": "^1.0.1",
"rehype-katex": "^6.0.2",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"rss": "^1.2.2",
"sanitize-html": "^2.9.0",
"ts-loader": "^9.4.2",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"webpack": "^5.75.0"
},
"bugs": {
"url": "https://github.com/alaingalvan/foil/issues"
},
"homepage": "https://github.com/alaingalvan/foil#readme",
"directories": {
"doc": "docs"
}
}