-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "histoire-monorepo",
"version": "2.0.2",
"private": true,
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"repository": {
"url": "https://github.com/Akryum/histoire.git",
"type": "git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"build": "pnpm run -r build",
"clean": "node ./clean.mjs",
"watch": "pnpm run build && pnpm run -r --parallel --filter \"./packages/**\" watch",
"test": "pnpm run -r --parallel --filter \"./packages/**\" test",
"test:dev": "pnpm run -r --parallel --filter \"./packages/**\" test:dev",
"test:examples": "pnpm run -r --workspace-concurrency 1 --filter \"./examples/vue**\" test:examples",
"test:examples:all": "pnpm run -r --workspace-concurrency 1 --filter \"./examples/**\" test:examples",
"release": "pnpm run lint && pnpm run test && pnpm run build && sheep release -b main --force",
"release:longmo": "pnpm run build && sheep release -b main --force",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"update": "pnpm --recursive update --latest"
},
"devDependencies": {
"@akryum/sheep": "^0.5.2",
"@antfu/eslint-config": "^3.11.2",
"histoire-vendors": "workspace:*",
"@iconify/vue": "^4.1.2",
"@vueuse/core": "catalog:",
"autoprefixer": "catalog:",
"eslint": "^9.16.0",
"eslint-plugin-cypress": "^4.1.0",
"floating-vue": "5.2.2",
"postcss": "catalog:",
"rimraf": "^6.0.1",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"vitepress": "1.5.0",
"vue-eslint-parser": "^9.4.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"eslint",
"react",
"react-dom",
"vue",
"vue-template-compiler",
"webpack"
],
"allowedVersions": {
"eslint": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-vue": "*",
"vite": "^7.0.0",
"vue": "*"
}
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"cypress",
"esbuild",
"puppeteer",
"svelte-preprocess",
"vue-demi"
]
}
}