generated from Sv443/Userscript.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "userutils-test",
"version": "0.1.0",
"userscriptName": "UserUtils-Test",
"description": "Test userscript for UserUtils: https://github.com/Sv443-Network/UserUtils",
"homepage": "https://github.com/Sv443-Network/UserUtils-Test",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"test": "npm run node-ts -- ./test.ts",
"build-prod": "cross-env NODE_OPTIONS=--no-warnings=ExperimentalWarning webpack --env mode=production",
"build-dev": "cross-env NODE_OPTIONS=--no-warnings=ExperimentalWarning webpack --env mode=development",
"post-build": "npm run node-ts --silent -- ./src/tools/post-build.ts",
"serve": "npm run node-ts --silent -- ./src/tools/serve.ts",
"dev": "concurrently \"nodemon --exec npm run build-dev --silent\" \"npm run serve\"",
"lint": "tsc --noEmit && eslint .",
"node-ts": "node --no-warnings=ExperimentalWarning --enable-source-maps --loader ts-node/esm"
},
"keywords": [
"userscript",
"template",
"typescript",
"webpack"
],
"author": {
"name": "Sv443",
"url": "https://github.com/Sv443"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sv443-Network/UserUtils-Test.git"
},
"dependencies": {
"@sv443-network/userutils": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/greasemonkey": "^4.0.4",
"@types/node": "^20.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv": "^16.1.4",
"eslint": "^7.32.0",
"express": "^4.18.2",
"html-loader": "^4.2.0",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"webpack-cli": "^5.1.1"
},
"nodemonConfig": {
"watch": [
"src/**",
"tools/**",
"webpack.config.js",
".env"
],
"ext": "ts,js,json,html,css",
"ignore": [
"dist/**"
]
}
}