-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vite-plugin-tampermonkey",
"version": "1.1.2",
"description": "a tampermonkey vite plugin",
"keywords": [
"tampermonkey",
"vite"
],
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./client": {
"import": "./dist/lib/client/code.mjs",
"require": "./dist/lib/client/code.js"
}
},
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint \"**/*.{ts,js,vue}\" --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "pnpm build:dts",
"build:dts": "tsup",
"release": "node ./scripts/release.js"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"author": "Thinker-ljn",
"license": "MIT",
"devDependencies": {
"@nexhome/yorkie": "^2.0.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/prettier": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"minimist": "^1.2.5",
"prettier": "^2.4.1",
"semver": "^7.3.5",
"ts-jest": "^27.0.5",
"tsup": "^5.3.0",
"typescript": "^4.4.3",
"vite": "^2.9.6"
},
"dependencies": {
"acorn-walk": "^8.2.0",
"js-base64": "^3.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thinker-ljn/vite-plugin-tampermonkey.git"
},
"homepage": "https://github.com/Thinker-ljn/vite-plugin-tampermonkey#readme"
}