-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.86 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.86 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
{
"name": "courvux",
"author": "Vanjexdex",
"version": "0.7.2",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./test-utils": "./dist/test-utils.js",
"./plugin": "./plugin/vite-plugin-courvux.js",
"./plugin/ssg": "./plugin/vite-plugin-courvux-ssg.js",
"./plugin/precompile": "./plugin/vite-plugin-courvux-precompile.js"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"plugin"
],
"scripts": {
"dev:ts": "tsc -w",
"dev:server": "node devserver.js",
"dev": "concurrently \"npm run dev:ts\" \"npm run dev:server\"",
"build": "vite build && esbuild src/test-utils.ts --bundle --format=esm --outfile=dist/test-utils.js && esbuild dist/index.js --bundle=false --minify --allow-overwrite --outfile=dist/index.js && tsc -p tsconfig.types.json",
"test:ssr": "node ssr-test.mjs",
"test:ssg": "node ssg-test.mjs",
"test:e2e": "playwright test",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:mobile": "playwright test --project=mobile-safari",
"test:e2e:ui": "playwright test --ui",
"test:all": "vitest run && node ssr-test.mjs && node ssg-test.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@rollup/plugin-terser": "^1.0.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^8.2.0",
"esbuild": "^0.28.0",
"happy-dom": "^20.9.0",
"serve": "^14.2.0",
"typescript": "^5.0.0",
"vite": "^8.0.10",
"vitest": "^3.2.4"
},
"dependencies": {
"acorn": "^8.16.0",
"courvux-precompiler": "github:vanjexdev/courvux-precompiler",
"lucide": "^1.11.0",
"magic-string": "^0.30.21"
}
}