-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "currietechnologies-razorclipboard",
"version": "1.6.0",
"description": "A Razor Class Library for interacting with the browser clipboard",
"scripts": {
"build": "SET NODE_ENV=production && webpack --color --mode=production",
"build:tsc": "tsc",
"watch": "webpack --watch",
"lint": "eslint ./src --ext .ts",
"prettier:write": "prettier --write ./src/*.ts",
"prettier:check": "prettier --check ./src/*.ts",
"babel": "babel ./src/clipboard.ts --out-dir wwwroot --extensions .ts,.tsx"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^2.8.8",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"chrome 66",
"edge 79",
"firefox 63",
"opera 53",
"safari 13.1",
"and_chr 66",
"and_ff 63",
"ios_saf 13.4",
"samsung 9.2"
],
"author": "Michael J. Currie"
}