-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "extra-build",
"version": "2.3.0",
"description": "Common build tools for extra-* packages.",
"main": "index.js",
"module": "index.mjs",
"sideEffects": false,
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"scripts": {
"test": "exit",
"build": "tsc && rollup -c",
"publish-docs": "tsc && rollup -c && node ./build publish-docs",
"publish-packages": "tsc && rollup -c && node ./build publish-packages"
},
"keywords": [
"extra",
"build"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodef/extra-build.git"
},
"bugs": {
"url": "https://github.com/nodef/extra-build/issues"
},
"homepage": "https://github.com/nodef/extra-build#readme",
"dependencies": {
"@octokit/rest": "^19.0.13",
"extra-javascript-text": "^0.1.14",
"extra-jsdoc-text": "^0.1.20",
"extra-markdown-text": "^0.1.5",
"extra-typedoc-theme": "^0.1.16",
"kleur": "^4.1.5",
"semver": "^7.6.3",
"typedoc": "^0.24.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^20.16.10",
"@types/semver": "^7.5.8",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23"
}
}