-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "@logto/nuxt",
"version": "1.2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"types": "./dist/module.d.ts"
}
},
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/logto-io/js.git",
"directory": "packages/nuxt"
},
"scripts": {
"precommit": "lint-staged",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build prepare && nuxi prepare playground",
"build": "nuxt-module-build prepare && nuxt-module-build build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"check": "tsc --noEmit",
"lint": "eslint --ext .ts src",
"prepack": "pnpm build"
},
"devDependencies": {
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.15.1",
"@silverhand/eslint-config": "^6.0.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.57.0",
"h3": "^1.13.0",
"happy-dom": "^15.10.2",
"lint-staged": "^15.0.0",
"nuxt": "^3.15.0",
"prettier": "^3.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@logto/node": "workspace:^",
"@nuxt/kit": "^3.15.0",
"@silverhand/essentials": "^2.9.2",
"defu": "^6.1.4"
}
}