-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "@logto/nuxt",
"version": "1.2.10",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
}
},
"types": "./dist/module.d.mts",
"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 && tsc -p tsconfig.build.json",
"test": "vitest",
"test:coverage": "vitest --coverage",
"check": "tsc --noEmit",
"lint": "eslint --ext .ts src",
"prepack": "pnpm build"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.1",
"@nuxt/test-utils": "^3.18.0",
"@silverhand/eslint-config": "^6.0.1",
"@vitest/coverage-v8": "^2.1.9",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.57.0",
"h3": "^1.15.5",
"happy-dom": "^20.0.8",
"lint-staged": "^15.0.0",
"nuxt": "^3.17.2",
"prettier": "^3.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.9",
"vue": "^3.5.13"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@logto/node": "workspace:^",
"@nuxt/kit": "^3.17.2",
"@silverhand/essentials": "^2.9.3",
"defu": "^6.1.4"
}
}