-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@stormtail/pinia-orm-root",
"private": true,
"packageManager": "pnpm@9.4.0",
"scripts": {
"release": "node scripts/release.mjs",
"cleanup": "rimraf 'packages/**/node_modules' 'playground/node_modules' 'node_modules'",
"size": "pnpm --filter './packages/**' size",
"build": "pnpm --filter './packages/**' build",
"build:ci": "pnpm --filter './packages/{pinia-orm,normalizr,axios}' build",
"build:stub": "pnpm --filter './packages/**' build --stub",
"build:prepare": "pnpm --filter './packages/**' dev:prepare",
"sponsor": "sponsorkit",
"format": "prettier -c --parser typescript \"packages/*/{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"format:fix": "pnpm run format --write",
"lint": "pnpm --filter './packages/**' lint",
"lint:fix": "pnpm --filter './packages/**' lint:fix",
"test": "pnpm --filter './packages/**' test",
"test:coverage": "pnpm --filter './packages/**' coverage",
"test:types": "tsc --build ./tsconfig.json"
},
"devDependencies": {
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "^22.10.5",
"chalk": "^4.1.2",
"changelogen": "^0.5.5",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
"execa": "^9.3.0",
"expect": "^29.7.0",
"globby": "^14.0.2",
"lint-staged": "^15.2.7",
"lodash.kebabcase": "^4.1.1",
"minimist": "^1.2.8",
"p-series": "^3.0.0",
"pascalcase": "^2.0.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"semver": "^7.6.2",
"sponsorkit": "^0.14.7",
"tinyglobby": "^0.2.10",
"typescript": "^5.5.3",
"yorkie": "^2.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
},
"vue": {
"optional": true
}
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"pnpm": {
"packageExtensions": {
"@vue/composition-api": {
"peerDependencies": {
"vue": "*"
}
}
},
"peerDependencyRules": {
"allowedVersions": {
"vue": "3"
}
},
"overrides": {
"handlebars": ">=4.7.9",
"shell-quote": ">=1.8.4",
"simple-git": ">=3.32.3",
"minimatch@3": ">=3.1.3",
"minimatch@5": ">=5.1.8",
"minimatch@9": ">=9.0.7",
"picomatch@2": ">=2.3.2",
"picomatch@4": ">=4.0.4",
"js-yaml@4": ">=4.2.0",
"lodash": ">=4.17.23",
"ws@8": ">=8.21.0",
"@babel/helpers@7": ">=7.26.10",
"brace-expansion@1": ">=1.1.13",
"braces@3": ">=3.0.3",
"glob@10": ">=10.5.0",
"glob@11": ">=11.1.0",
"minimatch@10": ">=10.2.3",
"postcss@8": ">=8.5.10",
"tar@7": ">=7.5.16",
"rollup@4": ">=4.59.0",
"svgo@3": ">=3.3.3",
"launch-editor@2": ">=2.14.1",
"flatted@3": ">=3.4.2",
"diff@8": ">=8.0.3",
"defu@6": ">=6.1.7",
"@babel/core@7": ">=7.29.7",
"form-data@4": ">=4.0.6",
"@eslint/plugin-kit": ">=0.3.4",
"yaml@2": ">=2.8.3"
}
}
}