-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.48 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@aurelia/sfc-vite",
"version": "0.1.0",
"description": "A high-performance Vite plugin for Aurelia 2 single file components with enhanced features",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prepare": "npm run build",
"dev": "rollup -c -w",
"test": "NODE_OPTIONS='--require=suppress-experimental-warnings --experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--require=suppress-experimental-warnings --experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--require=suppress-experimental-warnings --experimental-vm-modules' jest --coverage",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aurelia/sfc-vite.git"
},
"keywords": [
"aurelia",
"aurelia2",
"vite",
"plugin",
"sfc",
"single-file-components",
"typescript",
"scss",
"sass",
"stylus",
"hot-reload",
"hmr",
"performance"
],
"author": "Dwayne Charrington",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"vite": ">=6.0.3"
},
"dependencies": {
"node-html-parser": "^7.0.1",
"sass": "^1.89.2",
"stylus": "^0.64.0",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"less": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@jest/globals": "^30.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/node": "^24.0.8",
"eslint": "^9.30.0",
"globals": "^16.2.0",
"jest": "^30.0.3",
"jest-environment-node": "^30.0.2",
"rollup": "^4.44.1",
"suppress-experimental-warnings": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"globals": {
"__DEV__": true
},
"transform": {},
"testMatch": [
"**/__tests__/**/*.test.js",
"**/?(*.)+(spec|test).js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js",
"!**/node_modules/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/aurelia/sfc-vite/issues"
},
"homepage": "https://github.com/aurelia/sfc-vite#readme"
}