-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "vue-pool",
"version": "0.0.0",
"description": "Intuitive, type safe and flexible Pool for Vue",
"main": "./build/index.js",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "playwright test",
"coverage": "c8 pnpm test",
"build": "pnpm build:type && pnpm build:js",
"build:type": "tsc -b --noCheck --emitDeclarationOnly",
"build:js": "esbuild src/index.ts --outdir=build --target=es2022 --format=esm --packages=external --sourcemap --bundle --minify",
"lint": "eslint .",
"prepare": "pnpm build"
},
"repository": "github:PaperStrike/vue-pool",
"license": "ISC",
"files": [
"build",
"!build/cache",
"!*.tsbuildinfo",
"CHANGELOG.*"
],
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@eslint/markdown": "^7.5.1",
"@playwright/test": "^1.56.1",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^22.19.1",
"c8": "^10.1.3",
"esbuild": "~0.27.0",
"eslint": "^9.39.1",
"eslint-processor-html": "^1.0.1",
"jest-leak-detector": "^30.2.0",
"pinia": "^3.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vue": "^3.5.24"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.0.0"
}
}