-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "zilite",
"version": "0.0.4",
"description": "An easy-to-use syntax highlighter for the web.",
"author": {
"name": "Rohan Vashisht",
"email": "[email protected]"
},
"keywords": [
"syntax",
"highlight",
"typescript",
"highlighter"
],
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"No tests specified\" && exit 0"
},
"devDependencies": {
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/zilite.git"
},
"bugs": {
"url": "https://github.com/your-username/zilite/issues"
},
"homepage": "https://github.com/your-username/zilite#readme",
"type": "module"
}