-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.72 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
{
"name": "@docus/github",
"version": "1.0.4",
"description": "GitHub integration for Docus.",
"keywords": [
"nuxt",
"docus",
"github",
"module"
],
"repository": "https://github.com/docusgen/github-module",
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "nuxt dev example",
"lint": "eslint --ext .js,.ts,.vue .",
"test": "yarn lint && jest",
"clean:example": "rm -rf example/.nuxt example/node_modules",
"clean:app": "rm -rf src/app/node_modules src/app/.nuxt",
"clean:dist": "rm -rf dist node_modules",
"clean": "yarn clean:example && yarn clean:app && yarn clean:dist"
},
"dependencies": {
"@nuxt/kit": "^0.6.4",
"defu": "^5.0.0",
"ohmyfetch": "^0.4.2",
"remark-github": "^11.2.2",
"unbuild": "^0.5.11"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-runtime": "latest",
"@docus/app": "^1.3.5",
"@nuxt/test-utils": "latest",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "^27.0.2",
"babel-eslint": "latest",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"playwright": "^1.16.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7"
},
"publishConfig": {
"access": "public"
}
}