-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "accessibility-plugin-xyz",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/BottyIvan/accessibility-plugin-xyz.git"
},
"description": "A lightweight accessibility plugin for web applications",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"prepare": "npm run build",
"preview": "vite preview --config vite.config.ts"
},
"keywords": [
"accessibility",
"plugin",
"UI",
"web"
],
"author": "Your Name",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.0",
"vite-plugin-static-copy": "^2.3.0"
}
}