-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@editor-x/rollup-plugin-userscript",
"description": "A Rollup plugin for defining userscript metadata blocks, suitable for use with Tampermonkey, Violentmonkey, and other userscript managers.",
"repository": {
"type": "git",
"url": "git+https://github.com/TheEditorX/rollup-plugin-userscript.git"
},
"author": "David Slutsky",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"rollup-plugin",
"userscript",
"tampermonkey",
"violentmonkey"
],
"private": false,
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/es/index.js",
"default": "./dist/cjs/index.js"
},
"files": [
"dist",
"types"
],
"scripts": {
"lint": "eslint src/",
"test": "jest --coverage ",
"test:dev": "jest --watch",
"build": "rollup -c"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@rollup/plugin-typescript": "^12.1.3",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.3",
"@types/sinon": "^17.0.4",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"jest": "^30.0.2",
"prettier": "^3.5.3",
"rollup": "^4.44.0",
"sinon": "^21.0.0",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"dependencies": {
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4"
}
}