-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "smdp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "tsx --test tests/**/*.test.ts",
"test:golden": "tsx --test tests/parser.golden.test.ts",
"test:property": "tsx --test tests/parser.property.test.ts",
"test:bench": "SMDP_WRITE_BENCH=1 tsx --test tests/bench.test.ts",
"test:watch": "tsx --test --watch tests/**/*.test.ts",
"test:e2e": "playwright test",
"precompile": "tsx scripts/precompile-languages.ts"
},
"exports": {
".": {
"types": "./src/parser/index.ts",
"import": "./src/parser/index.ts"
},
"./highlight": {
"types": "./src/highlight/index.ts",
"import": "./src/highlight/index.ts"
},
"./parser": {
"types": "./src/parser/index.ts",
"import": "./src/parser/index.ts"
},
"./parser/canvas": {
"browser": "./src/parser/canvas-renderer.ts",
"import": "./src/parser/canvas-renderer.ts"
},
"./theme": {
"types": "./src/theme/index.ts",
"import": "./src/theme/index.ts"
}
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^24.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@7.1.14"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}