-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 KB
/
package.json
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
{
"name": "vite-plugin-tm-userscript",
"version": "1.2.1",
"description": "A vite plugin to build userscripts mainly for Tampermonkey.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [
"userscript",
"userscripts",
"tampermonkey",
"vite-plugin",
"vite"
],
"scripts": {
"build": "tsup",
"release": "node scripts/release.mjs",
"lint": "eslint src --ext .js,.ts --fix"
},
"author": "asadahimeka",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/asadahimeka/vite-plugin-tm-userscript.git"
},
"bugs": {
"url": "https://github.com/asadahimeka/vite-plugin-tm-userscript/issues"
},
"homepage": "https://github.com/asadahimeka/vite-plugin-tm-userscript#readme",
"dependencies": {
"acorn-walk": "^8.2.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chalk": "^5.0.1",
"enquirer": "^2.3.6",
"eslint": "^8.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"execa": "^6.1.0",
"minimist": "^1.2.6",
"semver": "^7.3.7",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vite": "^3.0.4"
}
}