-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.6 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
75
76
77
{
"name": "vue-ssr-assets-plugin",
"version": "0.4.3",
"description": "Webpack 5 plugin to generate manifest of critical assets for Vue 3 SSR applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"dist/*",
"src/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Trinovantes/vue-ssr-assets-plugin"
},
"author": {
"name": "Stephen",
"email": "hello@stephenli.ca",
"url": "https://www.stephenli.ca"
},
"license": "MIT",
"private": false,
"scripts": {
"dev": " NODE_ENV=development tsc -p tsconfig.prod.json --watch",
"build": "NODE_ENV=production tsc -p tsconfig.prod.json",
"prepublishOnly": "rm -rf ./dist && yarn build",
"lint": "vue-tsc --noemit && eslint",
"test": "vitest",
"exDev": " NODE_ENV=development webpack --watch --config example/webpack.config.ts",
"exBuild": "NODE_ENV=production webpack --config example/webpack.config.ts",
"exWatch": "NODE_ENV=development nodemon -r source-map-support/register dist/example/www.js --watch dist/example",
"exStart": "NODE_ENV=production node -r source-map-support/register dist/example/www.js",
"prepare": "patch-package"
},
"dependencies": {
"@sinclair/typebox": "^0.34.9"
},
"peerDependencies": {
"vue": "^3",
"vue-loader": "^17",
"webpack": "^5"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.4.0",
"@stylistic/eslint-plugin": "^4.1.0",
"@types/express": "^4.17.11",
"@types/jsdom": "^21.1.0",
"@types/node": "^22.10.0",
"@types/webpack": "^5.28.0",
"@vue/server-renderer": "^3.2.33",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"esbuild-loader": "^4.0.2",
"eslint": "^9.4.0",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-vue": "^9.9.0",
"express": "^4.17.3",
"katex": "^0.16.9",
"mini-css-extract-plugin": "^2.6.0",
"null-loader": "^4.0.1",
"patch-package": "^8.0.0",
"sass": "^1.50.0",
"sass-loader": "^16.0.2",
"ts-node": "^10.7.0",
"typescript": "^5.8.1-rc",
"typescript-eslint": "^8.0.0-alpha.24",
"vitest": "^3.0.7",
"vue": "^3.2.33",
"vue-loader": "^17.0.0",
"vue-router": "^4.0.14",
"vue-tsc": "^2.0.7",
"webpack": "^5.72.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
}
}