-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "harlem-workspace",
"version": "1.0.0",
"description": "Powerfully simple global state management for Vue 3",
"repository": "https://github.com/andrewcourtice/harlem.git",
"author": "Andrew Courtice <[email protected]>",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"workspaces": [
"app",
"core",
"docs",
"harlem",
"examples/*",
"packages/*",
"extensions/*",
"plugins/*"
],
"scripts": {
"prepare": "husky install",
"test": "vitest",
"build": "lerna run build --no-private",
"release": "lerna publish --no-private --force-publish",
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts,.mjs,.vue --quiet",
"version": "yarn install && git stage yarn.lock",
"docs": "node ./.scripts/generate-docs.mjs"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/fs-extra": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-c8": "^0.29.3",
"c8": "^7.13.0",
"esbuild-plugin-replace": "^1.3.0",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^9.9.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lerna": "^6.5.1",
"standard-changelog": "^2.0.27",
"tsup": "^6.7.0",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^5.0.2",
"vitest": "^0.29.3",
"vue-eslint-parser": "^9.1.0"
}
}