-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
75 lines (75 loc) · 1.65 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pinia-shared-state",
"type": "module",
"publishConfig": {
"access": "public"
},
"version": "0.5.1",
"packageManager": "[email protected]",
"author": {
"name": "Robert Soriano",
"email": "[email protected]"
},
"license": "MIT",
"funding": "https://github.com/sponsors/wobsoriano",
"repository": {
"type": "git",
"url": "https://github.com/wobsoriano/pinia-shared-state.git"
},
"sideEffects": false,
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
},
"scripts": {
"build": "tsup",
"dev": "pnpm build --watch --onSuccess=\"pnpm --filter vite dev\"",
"dev:nuxt": "pnpm build --watch --onSuccess=\"pnpm --filter nuxt3 dev\"",
"release": "bumpp && npm publish",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"pinia": "^2"
},
"dependencies": {
"broadcast-channel": "^7.0.0",
"vue-demi": "^0.14.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.5",
"bumpp": "^9.2.0",
"eslint": "^8.55.0",
"pinia": "^2.1.7",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vue": "^3.3.11"
}
}