-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.61 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.61 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
{
"name": "@immense/vue-pom-generator",
"version": "1.0.36",
"description": "Injects data-testid attributes for all interactive elements and generates page object models for every page.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/immense/vue-pom-generator.git"
},
"bugs": {
"url": "https://github.com/immense/vue-pom-generator/issues"
},
"homepage": "https://github.com/immense/vue-pom-generator#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./eslint": {
"types": "./dist/eslint/index.d.ts",
"import": "./dist/eslint/index.mjs",
"require": "./dist/eslint/index.cjs"
}
},
"files": [
"dist",
"class-generation",
"click-instrumentation.ts",
"*.md"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "vite build && tsc --emitDeclarationOnly --declarationMap --outDir dist",
"knip": "knip",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"smoke:pack": "node ./scripts/packed-smoke-check.mjs",
"typecheck": "node -e \"process.argv = ['node','tsc',...process.argv.slice(1)]; require('typescript/bin/tsc')\" -- -p tsconfig.json --noEmit",
"prepare": "simple-git-hooks",
"prepublishOnly": "npm run build"
},
"simple-git-hooks": {
"pre-push": "bash scripts/git-hooks/pre-push.sh"
},
"peerDependencies": {
"@vitejs/plugin-vue": ">=5",
"eslint": ">=9",
"vite": ">=7",
"vitest": "^4",
"vue": ">=3"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
}
},
"dependencies": {
"@babel/parser": "^7.28.5",
"@babel/types": "^7.28.5",
"@vue/compiler-core": "3.5.22",
"@vue/compiler-dom": "3.5.22",
"@vue/compiler-sfc": "3.5.22",
"@vue/shared": "3.5.22",
"jsdom": "^27.4.0",
"vite-plugin-virtual": "^0.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "5.3.0",
"@github/copilot-sdk": "^0.1.8",
"@playwright/test": "^1.57.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.27.0",
"knip": "^5.82.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2",
"vite": "^7.3.1",
"vitest": "^4.0.16",
"vue-eslint-parser": "^10.2.0",
"vue-router": "^4.2.5"
},
"license": "MIT"
}