-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "aurora-code",
"type": "module",
"version": "2.5.5",
"description": "The C code highlighting engine for the web.",
"license": "MIT",
"author": "Abinash Karmakar",
"module": "./dist/index.js",
"homepage": "https://github.com/codeAbinash/aurora",
"main": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codeAbinash/aurora.git"
},
"bugs": {
"url": "https://github.com/codeAbinash/aurora/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./themes/oneDarkPro.css": "./dist/themes/oneDarkPro.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test-ui": "vitest --ui",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@types/node": "^20.14.2",
"@vitest/ui": "^1.6.0",
"picocolors": "^1.0.1",
"prettier": "^3.3.1",
"terser": "^5.31.1",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}