|
1 | 1 | { |
2 | 2 | "name": "vuepress-plugin-umami-analytics", |
3 | | - "description": "VuePress plugin for using Umami analytics", |
4 | 3 | "version": "1.15.0", |
5 | | - "type": "module", |
| 4 | + "description": "VuePress plugin for using Umami analytics", |
6 | 5 | "keywords": [ |
7 | 6 | "analytics", |
8 | 7 | "umami", |
|
11 | 10 | "vuepress-plugin" |
12 | 11 | ], |
13 | 12 | "repository": "azat-io/vuepress-plugin-umami-analytics", |
14 | | - "author": "Azat S. <[email protected]>", |
15 | 13 | "license": "MIT", |
16 | | - "engines": { |
17 | | - "node": "^16.0.0 || >=18.0.0" |
| 14 | + "author": "Azat S. <[email protected]>", |
| 15 | + "type": "module", |
| 16 | + "exports": { |
| 17 | + ".": "./dist/index.js" |
18 | 18 | }, |
| 19 | + "main": "./dist/index.js", |
| 20 | + "types": "./dist/index.d.ts", |
| 21 | + "files": [ |
| 22 | + "dist" |
| 23 | + ], |
19 | 24 | "scripts": { |
20 | | - "start": "tsc -b --watch", |
21 | | - "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"", |
22 | 25 | "build": "tsc -b", |
| 26 | + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"", |
23 | 27 | "prepare": "pnpm run build", |
24 | 28 | "release": "pnpm release:check && pnpm release:version && pnpm release:publish", |
25 | 29 | "release:changelog": "standard-version --infile changelog.md --same-file --skip.bump --skip.commit --skip.tag", |
26 | 30 | "release:check": "pnpm test && pnpm build", |
27 | 31 | "release:publish": "clean-publish", |
28 | 32 | "release:version": "bumpp package.json --execute=\"pnpm release:changelog && git add changelog.md\" --commit \"build: publish v%s\" --tag --all", |
29 | | - "test:js": "eslint .", |
30 | | - "test:types": "tsc --noEmit --pretty", |
31 | | - "test": "pnpm run /^test:/" |
32 | | - }, |
33 | | - "files": [ |
34 | | - "dist" |
35 | | - ], |
36 | | - "main": "./dist/index.js", |
37 | | - "exports": { |
38 | | - ".": "./dist/index.js" |
| 33 | + "start": "tsc -b --watch", |
| 34 | + "test": "pnpm run /^test:/", |
| 35 | + "test:js": "eslint --flag unstable_ts_config .", |
| 36 | + "test:types": "tsc --noEmit --pretty" |
39 | 37 | }, |
40 | | - "types": "./dist/index.d.ts", |
41 | 38 | "dependencies": { |
42 | 39 | "@vuepress/client": "2.0.0-rc.17", |
43 | 40 | "@vuepress/core": "2.0.0-rc.17", |
44 | 41 | "@vuepress/utils": "2.0.0-rc.17" |
45 | 42 | }, |
46 | 43 | "devDependencies": { |
47 | | - "@azat-io/eslint-config-typescript": "^1.10.0", |
48 | | - "@typescript-eslint/eslint-plugin": "^8.7.0", |
49 | | - "@typescript-eslint/parser": "^8.7.0", |
50 | | - "bumpp": "^9.6.1", |
51 | | - "clean-publish": "^5.0.0", |
52 | | - "eslint": "^9.11.1", |
53 | | - "eslint-plugin-import": "^2.30.0", |
54 | | - "eslint-plugin-n": "^17.10.3", |
55 | | - "eslint-plugin-node-import": "^1.0.4", |
56 | | - "eslint-plugin-perfectionist": "^3.7.0", |
57 | | - "eslint-plugin-prefer-arrow": "^1.2.3", |
58 | | - "eslint-plugin-prefer-let": "^4.0.0", |
59 | | - "eslint-plugin-promise": "^7.1.0", |
60 | | - "eslint-plugin-sonarjs": "^2.0.2", |
61 | | - "eslint-plugin-unicorn": "^55.0.0", |
62 | | - "eslint-plugin-vitest": "^0.5.4", |
| 44 | + "@azat-io/eslint-config": "^2.4.0", |
| 45 | + "bumpp": "^9.8.1", |
| 46 | + "clean-publish": "^5.1.0", |
| 47 | + "eslint": "^9.16.0", |
63 | 48 | "standard-version": "^9.5.0", |
64 | | - "typescript": "^5.6.2" |
| 49 | + "typescript": "^5.7.2" |
| 50 | + }, |
| 51 | + "engines": { |
| 52 | + "node": "^16.0.0 || >=18.0.0" |
65 | 53 | } |
66 | 54 | } |
0 commit comments