-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
1,956 additions
and
2,421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,55 @@ | ||
{ | ||
"name": "@violentmonkey/shortcut", | ||
"version": "1.4.2", | ||
"description": "Register a shortcut for a function", | ||
"author": "Gerald <[email protected]>", | ||
"license": "ISC", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"dev": "rollup -wc", | ||
"prepublishOnly": "run-s build", | ||
"lint": "eslint --ext .ts,.tsx . && prettier -c --ignore-path=.eslintignore .", | ||
"lint:fix": "eslint --ext .ts,.tsx . --fix && prettier -c --ignore-path=.eslintignore . -w", | ||
"test": "jest", | ||
"ci": "run-s lint test", | ||
"clean": "del-cli dist types", | ||
"build:js": "cross-env NODE_ENV=production rollup -c", | ||
"build:types": "tsc -p tsconfig.prod.json", | ||
"build": "run-s ci clean build:*", | ||
"demo:cp": "cp src/demo/* dist", | ||
"demo": "run-s build:js demo:cp" | ||
}, | ||
"unpkg": "dist/index.js", | ||
"jsdelivr": "dist/index.js", | ||
"repository": "[email protected]:violentmonkey/vm-shortcut.git", | ||
"nyc": { | ||
"include": [ | ||
"src/**" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"files": [ | ||
"dist", | ||
"types" | ||
], | ||
"typings": "types/index.d.ts", | ||
"dependencies": { | ||
"@babel/runtime": "^7.22.15" | ||
}, | ||
"devDependencies": { | ||
"@gera2ld/plaid": "~2.6.0", | ||
"@gera2ld/plaid-rollup": "~2.6.0", | ||
"@gera2ld/plaid-test": "~2.6.0", | ||
"@typescript-eslint/parser": "^6.7.0", | ||
"del-cli": "^5.1.0", | ||
"husky": "^8.0.3", | ||
"jest-environment-jsdom": "^29.7.0" | ||
}, | ||
"jest": { | ||
"testEnvironment": "jsdom" | ||
} | ||
} | ||
{ | ||
"name": "@violentmonkey/shortcut", | ||
"version": "1.4.2", | ||
"description": "Register a shortcut for a function", | ||
"author": "Gerald <[email protected]>", | ||
"license": "ISC", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"dev": "rollup -wc", | ||
"prepublishOnly": "run-s build", | ||
"lint": "eslint --ext .ts,.tsx . && prettier -c --ignore-path=.eslintignore .", | ||
"lint:fix": "eslint --ext .ts,.tsx . --fix && prettier -c --ignore-path=.eslintignore . -w", | ||
"test": "jest", | ||
"ci": "run-s lint test", | ||
"clean": "del-cli dist types", | ||
"build:js": "NODE_ENV=production rollup -c", | ||
"build:types": "tsc -p tsconfig.prod.json", | ||
"build": "run-s ci clean build:*", | ||
"demo:cp": "cp src/demo/* dist", | ||
"demo": "run-s build:js demo:cp" | ||
}, | ||
"unpkg": "dist/index.js", | ||
"jsdelivr": "dist/index.js", | ||
"repository": "[email protected]:violentmonkey/vm-shortcut.git", | ||
"nyc": { | ||
"include": [ | ||
"src/**" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"files": [ | ||
"dist", | ||
"types" | ||
], | ||
"typings": "types/index.d.ts", | ||
"dependencies": { | ||
"@babel/runtime": "^7.24.0" | ||
}, | ||
"devDependencies": { | ||
"@gera2ld/plaid": "~2.7.0", | ||
"@gera2ld/plaid-rollup": "~2.7.0", | ||
"@gera2ld/plaid-test": "~2.6.0", | ||
"del-cli": "^5.1.0", | ||
"husky": "^9.0.11", | ||
"jest-environment-jsdom": "^29.7.0" | ||
}, | ||
"jest": { | ||
"testEnvironment": "jsdom" | ||
} | ||
} |
Oops, something went wrong.