-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "nuxt-module-starter",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/your-org/your-module.git"
},
"author": "HugoRCD",
"license": "MIT",
"packageManager": "bun@1.2.4",
"scripts": {
"dev": "turbo run dev --filter=my-module-playground",
"dev:prepare": "turbo run dev:prepare",
"dev:docs": "turbo run dev --filter=my-module-docs",
"docs": "turbo run dev --filter=my-module-docs",
"build": "turbo run build",
"build:module": "turbo run build --filter=my-module",
"build:docs": "turbo run build --filter=my-module-docs",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"automd": "automd --config .github/automd.json"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.15.2",
"@types/node": "latest",
"automd": "^0.4.3",
"eslint": "^10.2.1",
"turbo": "^2.9.6",
"typescript": "^6.0.3",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.7"
},
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi"
]
}