-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "@nodesecure/documentation-ui",
"version": "2.0.0",
"description": "Portable UI for NodeSecure tools (guides on flags, security docs etc..)",
"type": "module",
"scripts": {
"build": "rimraf ./dist ./tsconfig.tsbuildinfo && tsc && cp -r src/css dist/css",
"prepublishOnly": "npm run build",
"lint": "eslint src example",
"example": "vite"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/cli",
"directory": "workspaces/documentation-ui"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./node": {
"types": "./dist/nodejs/esm.d.ts",
"default": "./dist/nodejs/esm.js"
}
},
"keywords": [
"nodesecure",
"documentation",
"help"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"dependencies": {
"@nodesecure/flags": "3.0.3",
"@nodesecure/js-x-ray": "15.1.0",
"highlight.js": "11.11.1",
"markdown-it": "14.1.1"
},
"devDependencies": {
"@types/markdown-it": "14.1.2"
}
}