-
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) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 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": "vite-plugin-saltify-pinia-stores",
"version": "0.0.4",
"description": "Saltify pinia-store's ids",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": "khodakova",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "husky",
"test": "vitest",
"test:ui": "vitest --ui",
"test:once": "vitest run",
"build": "unbuild",
"version": "yarn test:once && yarn build && changeset add && changeset version",
"publish": "yarn test:once && yarn build && yarn changeset publish"
},
"devDependencies": {
"@changesets/changelog-git": "0.2.0",
"@changesets/cli": "2.27.7",
"@eslint/js": "9.9.0",
"@stylistic/eslint-plugin-js": "2.6.4",
"@types/eslint__js": "8.42.3",
"@types/node": "22.4.1",
"@vitest/ui": "2.0.5",
"eslint": "9.9.0",
"husky": "9.1.4",
"lint-staged": "15.2.9",
"typescript": "5.5.4",
"typescript-eslint": "8.1.0",
"unbuild": "2.0.0",
"vite": "5.4.1",
"vitest": "2.0.5"
},
"peerDependencies": {
"vite": ">=4.0.0"
},
"dependencies": {
"@swc/core": "1.7.12",
"colorette": "2.0.20"
},
"lint-staged": {
"**/*.{ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/khodakova/saltify-pinia-stores.git"
},
"keywords": [
"vite-plugin",
"pinia-stores",
"saltify",
"uniqueizer",
"mfe"
],
"bugs": {
"url": "https://github.com/khodakova/saltify-pinia-stores/issues"
},
"homepage": "https://github.com/khodakova/saltify-pinia-stores#readme"
}