This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "@nuxt-themes/config",
"version": "0.0.1",
"description": "Toolkit for authoring Nuxt Themes",
"keywords": [
"nuxt",
"theme",
"kit"
],
"repository": "nuxt-themes/config",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
},
"./module": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxi prepare playground && nuxt-module-build --stub",
"dev:fixtures": "./.github/scripts/fixture.sh",
"dev:docs": "nuxi dev docs",
"build:docs": "nuxi generate docs",
"lint": "eslint --ext .js,.ts,.vue .",
"prepack": "yarn build",
"test:coverage": "vitest --coverage",
"test:types": "tsc --build tsconfig.json",
"test": "nuxi prepare test/fixtures/basic && vitest run",
"clean": "./.github/scripts/clean.sh",
"prepare": "yarn dev:prepare"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.6",
"untyped": "^0.4.4"
},
"devDependencies": {
"@nuxt-themes/docus": "npm:@nuxt-themes/docus-edge@latest",
"@nuxtjs/design-tokens": "npm:@nuxtjs/design-tokens-edge@latest",
"@nuxt/module-builder": "^0.1.7",
"@nuxt/schema": "^3.0.0-rc.6",
"@nuxt/test-utils": "npm:@nuxt/test-utils-edge@latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxtjs/tailwindcss": "npm:@nuxtjs/tailwindcss-edge@latest",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"globby": "^13.1.2",
"husky": "^8.0.1",
"jiti": "^1.14.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"nuxt": "npm:nuxt3@latest",
"pathe": "^0.3.2",
"vitest": "^0.19.1"
}
}