-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.81 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
{
"name": "npm-install-assistant-chrome-extension",
"version": "0.1.2",
"private": true,
"description": "Chrome extension that adds a React-powered install assistant block to npm package sidebars.",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write --log-level error .",
"format:check": "prettier --check --log-level error .",
"stylelint": "stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "stylelint --fix \"src/**/*.{css,scss}\"",
"tsc": "tsc --noEmit",
"link": "rm -rf ~/.xoxo/npm-assistant && ln -s \"$(pwd)\" ~/.xoxo/npm-assistant",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"type": "module",
"homepage": "https://github.com/vijayhardaha/npm-install-assistant-chrome-extension",
"repository": {
"type": "git",
"url": "git+https://github.com/vijayhardaha/npm-install-assistant-chrome-extension.git"
},
"bugs": {
"url": "https://github.com/vijayhardaha/npm-install-assistant-chrome-extension/issues"
},
"license": "MIT",
"author": {
"name": "Vijay Hardaha",
"url": "https://github.com/vijayhardaha"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@prettier/plugin-xml": "^3.4.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.43",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vijayhardaha/dev-config": "^2.1.1",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^63.0.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rollup": "^4.62.0",
"sass": "^1.101.0",
"stylelint": "^17.13.0",
"stylelint-config-property-sort-order-smacss": "^11.2.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"trustedDependencies": [
"@parcel/watcher",
"unrs-resolver"
]
}