-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 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
67
68
69
70
{
"name": "@climateinteractive/docs-builder",
"version": "1.3.5",
"files": [
"bin/**",
"dist/**"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"docs-builder": "./bin/cli.js"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"precommit": "run-s lint prettier:check",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run",
"build": "tsup-node",
"watch": "tsup-node --watch",
"ci:build": "run-s clean lint prettier:check type-check test:ci build"
},
"dependencies": {
"@compodoc/live-server": "^1.2.3",
"chokidar": "^3.5.3",
"find-up": "^6.3.0",
"gettext-parser": "^5.0.0",
"glob": "^8.0.3",
"gray-matter": "^4.0.3",
"lunr": "^2.3.9",
"lunr-languages": "^1.9.0",
"mark.js": "^8.11.1",
"marked": "^4.0.10",
"ps-tree": "^1.2.0",
"puppeteer": "^18.2.1",
"rev-hash": "^3.0.0",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@types/lunr": "^2.3.4",
"@types/marked": "^4.0.1",
"@types/node": "^20.11.20"
},
"author": "Climate Interactive",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/climateinteractive/docs-builder",
"directory": "packages/docs-builder"
},
"bugs": {
"url": "https://github.com/climateinteractive/docs-builder/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}